Zend Framework 2 没有路由到模块的概念。所有路由映射都在 URI 模式(用于 HTTP 路由)和特定控制器类之间。也就是说,Zend\Mvc
提供了一个事件监听器 ( Zend\Mvc\ModuleRouteListener
),它允许您定义一个 URI 模式,该模式基于给定模式映射到多个控制器,从而模拟“模块路由”。要定义这样的路由,您可以将其作为路由配置:
'router' => array(
'routes' => array(
// This defines the hostname route which forms the base
// of each "child" route
'home' => array(
'type' => 'Hostname',
'options' => array(
'route' => 'site.com',
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
// This Segment route captures the requested controller
// and action from the URI and, through ModuleRouteListener,
// selects the correct controller class to use
'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(
'controller' => 'Index',
'action' => 'index',
),
),
),
),
),
),
),
(单击此处查看此@ZendSkeletonApplication 的示例)
不过,这只是等式的一半。您还必须使用特定的命名格式在模块中注册每个控制器类。这也是通过相同的配置文件完成的:
'controllers' => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController'
),
),
数组键是 ModuleRouteListener 用于查找正确控制器的别名,它必须采用以下格式:
<Namespace>\<Controller>\<Action>
分配给此数组键的值是控制器类的完全限定名称。
(单击此处查看此@ZendSkeletonApplication 的示例)
注意:如果您没有使用 ZendSkeletonApplication,或者已经删除了它的默认应用程序模块,您将需要在您自己的模块之一中注册 ModuleRouteListener。 单击此处查看 ZendSkeletonApplication 如何注册此侦听器的示例