我试图使用PhlyRestfully模块通过Zend Framework 2构建API。问题是,尽管我具有正确的配置,但是ResourceController无法调度到Resource。这是我得到的回应:
The requested controller was unable to dispatch the request.
Controller:
Api\Controller\Locations
No Exception available
我将在下面描述我的配置:
application.php
'modules' => array(
'PhlyRestfully',
'Api',
'Application',
)
api / config / module.config.php
return array(
'router' => array(
'routes' => array(
'api' => array(
'type' => 'Literal',
'options' => array(
'route' => '/api',
'defaults' => array(
'__NAMESPACE__' => 'Api\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'locations' => array(
'type' => 'Segment',
'options' => array(
'route' => '/locations[/[:id]]',
'controller' => 'Api\Controller\Locations',
'defaults' => array(
'controller' => 'Api\Controller\Locations'
)
),
),
),
),
),
),
'view_manager' => array(
'strategies' => array(
'ViewJsonStrategy'
),
),
'phlyrestfully' => array(
'resources' => array(
'Api\Controller\Locations' => array(
'listener' => 'Api\Resource\Location',
'route_name' => 'api/locations'
)
)
),
);
Api /资源/Location.php
namespace Api\Resource;
class Location extends AbstractListenerAggregate
{
public function attach(EventManagerInterface $events)
{
$this->listeners[] = $events->attach('fetch', array($this, 'onFetch'));
$this->listeners[] = $events->attach('fetchAll', array($this, 'onFetchAll'));
}
public function onFetchAll(ResourceEvent $e)
{
var_dump($e);
}
public function onFetch(ResourceEvent $e)
{
var_dump($e);
}
}
为了简洁起见,我已经省略了一些不必要的用法和其他用法。
网址:/ api / locations
路由工作正常,因为调用了ResourceController并注入了适当的Resource。调用了侦听器上的attach()方法,但是不是由Resource触发事件,而是调用AbstractRestfulController的onDispatch方法,它返回404,因为我实际上并未使用indexAction定义LocationsController。
据我了解,PhlyRest通过提供的ResourceController完全模拟了这些资源控制器的存在,您无需实际创建这些控制器类,因为这是模块的重点。
有任何想法吗?
最佳答案
在路由配置中删除默认操作。