【发布时间】:2013-12-11 10:30:50
【问题描述】:
/* Here is my module config */
'controllers' => array(
'invokables' => array(
'User\Controller\User' => 'User\Controller\UserController',
),
),
'router' => array(
'routes' => array(
'user' => array(
'type' => 'Literal',
'options' => array(
'route' => '/user',
'defaults' => array(
'controller' => 'User\Controller\User',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'default' => array(
'type' => 'Segment',
'options' => array(
'route' => '/[:controller[/:action]]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
),
),
),
),
),
),
),
和控制器一样
类 UserController 扩展 AbstractActionController{
public function indexAction(){
parent::indexAction();
return new ViewModel();
}
public function addAction(){
return new ViewModel();
}
}
每当我尝试访问 zf.localhost/user/user/add 时
它会抛出错误
找不到页面。
请求的控制器无法映射到现有的控制器类。
控制器: 用户(解析为无效的控制器类或别名:用户)
没有可用的例外
我不知道为什么路由不起作用。
【问题讨论】:
标签: php zend-framework zend-framework2