这是我的module.config.php
return array(
'router' => array(
'routes' => array(
'subscription' => array(
'type' => 'Segment',
'options' => array(
'route' => '/subscription',
'defaults' => array(
'__NAMESPACE__' => 'Subscription\Controller',
'controller' => 'Account',
'action' => 'subscribe',
),
),
'may_terminate' => true,
'child_routes' => array(
'process' => 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_-]*',
),
),
),
),
), // end subscription
),
), // end router
'controllers' => array(
'invokables' => array(
'Subscription\Controller\Account' => 'Subscription\Controller\AccountController',
),
),
'view_manager' => array(
'template_path_stack' => array(
__DIR__ . '/../view',
),
'strategies' => array(
'ViewJsonStrategy',
),
),
);
我已经将这段代码用于我的所有模块,但是在这个特定的模块中这不起作用,我有一个错误
找不到名称“”的路线
我无法理解为什么会发生这种情况,因为此配置适用于我的其他模块。
请帮助!
谢谢!