0

我对ZF2非常陌生,不知道如何设置全局路由器。我知道如何在模块级别设置:

http://packages.zendframework.com/docs/latest/manual/en/user-guide/routing-and-controllers.html说:

URL 到特定操作的映射是使用模块的 module.config.php 文件中定义的路由完成的。我们将为我们的相册操作添加一条路线。这是带有新代码注释的更新配置文件。

// The following section is new and should be added to your file
'router' => array(
    'routes' => array(
        'album' => array(
            'type'    => 'segment',
            'options' => array(
                'route'    => '/album[/:action][/:id]',
                'constraints' => array(
                    'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                    'id'     => '[0-9]+',
                ),
                'defaults' => array(
                    'controller' => 'Album\Controller\Album',
                    'action'     => 'index',
                ),
            ),
        ),
    ),
),

有没有办法为整个应用程序配置默认行为?或者我必须在每个模块中进行配置? config/application.config.php将是一个合乎逻辑的地方。它在某处有记录吗?

4

1 回答 1

0

您的 ZF2 模块定义的内容getConfig()与所有其他模块配置合并,如果某些配置键发生冲突,最终被加载的模块替换。因此,您getConfig()已经影响了整个应用程序,其范围不仅限于您的模块。

于 2012-08-07T22:16:49.513 回答