// The following is a route to simplify getting started creating
// new controllers and actions without needing to create a new
// module. Simply drop new controllers in, and you can access them
// using the path /application/:controller/:action
'application' => array(
'type' => 'Literal',
'options' => array(
'route' => '/application',
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'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(
),
),
),
),
),我已经用类TestController创建了一个TestController.php有一个方法indexAction,但是我不能使用这个路由执行它,如果我写/application/index/test或者/application/index/index -一切都可以,但是如果我改变控制器来测试它不工作,我的意思是/application/ Test /test或者/application/test/index
发布于 2013-03-29 15:40:49
不要忘记将新控制器添加到应用程序module.config.php中的控制器的可调用项的配置部分:
'controllers' => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController',
'Application\Controller\Test' => 'Application\Controller\TestController',
),
),https://stackoverflow.com/questions/15699172
复制相似问题