如何路由到许多模块?

时间:2013-02-27 20:08:27

标签: zend-framework2

我从https://github.com/zendframework/ZendSkeletonApplication下载了Skeleton,它运行正常。一切都很清楚。

但是当我添加另一个模块时会发生什么?我从骨架中复制模块,我更改了名称,然后将我的新模块添加到application.config.php:

return array(
    'modules' => array(
        'Application',
        'Api',
    ),
[...]

并更改module.config.php中的路由:

return array(
    'router' => array(
        'routes' => array(
            'api' => array(
                'type'    => 'Literal',
                'options' => array(
                    'route'    => 'api/',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Api\Controller',
                        'controller'    => 'Api',
                        'action'        => 'api',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'default' => array(
                        'type'    => 'Segment',
                        'options' => array(
                            'route'    => '/api[/:action]]',
                            'constraints' => array(
                                'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                'action'     => '[a-zA-Z][a-zA-Z0-9_-]*',
                            ),
                            'defaults' => array(
                            ),
                        ),
                    ),
                ),
            ),
        ),
    ),
    'service_manager' => array(
        'factories' => array(
            'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
        ),
    ),
    'translator' => array(
        'locale' => 'en_US',
        'translation_file_patterns' => array(
            array(
                'type'     => 'gettext',
                'base_dir' => __DIR__ . '/../language',
                'pattern'  => '%s.mo',
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Application\Controller\Index' => 'Application\Controller\IndexController',
            'Application\Controller\Auth' => 'Application\Controller\AuthController'
        ),
    ),
    'view_manager' => array(
        'display_not_found_reason' => true,
        'display_exceptions'       => true,
        'doctype'                  => 'HTML5',
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index',
        'template_map' => array(
            'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
            'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
            'error/404'               => __DIR__ . '/../view/error/404.phtml',
            'error/index'             => __DIR__ . '/../view/error/index.phtml',
        ),
        'template_path_stack' => array(
            __DIR__ . '/../view',
        ),
    ),
);

但是现在我从api看到布局来自骨架。怎么做?

1 个答案:

答案 0 :(得分:2)

所有module.config.php文件将合并在一起形成一个大型配置数组。

究竟发生了什么,取决于您在module.config.php routes数组中使用的名称。

如果您重复使用已经给出的相同名称(例如,如果api模块中已存在名为Application的路由),则旧条目将为overriden

将使用哪条路线重定向到右侧控制器,动作和参数也取决于匹配。将按顺序检查定义的所有路径(在所有模块上)。将执行与您当前URL匹配的第一个。

在您的情况下,似乎没有任何歧义,因为您将所有内容重命名为api(路由名称+路由前缀),因此它将完美地运行。当然,您可能还希望在其他模块中定义完全不同的较短路由,然后您必须确保它们不会获取应该由以后的模块匹配的URL。