我正在尝试使用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',
)
阿比/配置/ 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'
)
)
),
);
阿比/资源/ 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。
据我了解,PhlyRestfully通过提供的ResourceController模拟这些资源控制器的存在,您不需要实际创建这些控制器类,因为这是模块的重点。
有什么想法吗?
答案 0 :(得分:5)
删除路由配置中的默认操作。
答案 1 :(得分:2)
当我在控制器中忘记了方法的 Action
后缀时,我发生了这个错误。