3

在 ZF1 中,您不必在 URL 中包含模块;如果未提供,它将默认为...默认模块。这在 ZF2 中如何实现?我已经使用骨架应用程序来启动和运行,但似乎我总是需要包含模块名称,例如/application/controller/action.

我想我可以通过创建一个带有两个“占位符”的路线来解决这个问题;控制器和动作,然后将默认模块设置为“应用程序”。然后我会将其放入/config/autoload/global.php(或可能/config/application.config.php)中,以便该路线适用于我的所有应用程序。但是,我收到错误消息,即路由无法匹配 URL,即使我将路由硬编码为/user/index.

我尝试了下面的代码。

return array(
    'router' => array(
        'routes' => array(
            'nomodule' => array(
                'type' => 'Zend\Mvc\Router\Http\Literal',
                '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(
                        'module' => 'Application' // Not sure of the syntax here
                    )
                )
            ),
        )
    )
);

正如我在评论中所写的那样,我不确定我的问题是否与默认语法有关,但我不会这么认为,因为如果我对路由进行硬编码并删除所有默认值,也会发生同样的情况。我还尝试根据骨架应用程序中的示例对其进行试验,但没有运气。我是不是走错了路?有更好的方法吗?还是我只是犯了一个错误?

提前致谢。

编辑:有关使其工作的代码,请参阅答案。有关其工作原理的说明请阅读本文

4

3 回答 3

11

注意:强烈建议使用显式路由而不是通配符。

您在尝试中使用了 Zend\Mvc\Router\Http\Literal 路由类型,您可能猜到它是字面的,即完全匹配。要使其工作,您需要分段路线类型。

检查applicationZend Skeleton Application 配置中的路由及其子路由default。它完全符合您的要求。

至于模块 - 从您的代码角度来看,没有“模块”之类的东西。模块在启动时注册资源,此后不再相关。在 zf2 中,您可以通过控制器注册到 controllerManager 的类或别名指定确切的控制器

// module\Application\config\module.config.php
return array(
    'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Zend\Mvc\Router\Http\Literal',
                'options' => array(
                    'route'    => '/',
                    'defaults' => array(
                        'controller' => 'Application\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(
                                'action' => 'index',
                                '__NAMESPACE__' => 'Application\Controller'
                            )
                        )
                    )
                )
            )
        )
    ),
    'controllers' => array(
        'invokables' => array(
            'Application\Controller\Index' => 'Application\Controller\IndexController',
            'Application\Controller\User' => 'Application\Controller\UserController'
        ),
    )
);
于 2012-09-16T00:01:21.093 回答
1

正如我在@Xerkus 答案下的评论中所说,它不适用于所有 URL:

/application/index/index
/application/index
/application
/index/index
/index
/

我还添加testAction()IndexControllerTestController相同的操作IndexController,因此我也可以在以下路线上测试我的解决方案:

/index/test
/test/index
/test/test
/test

因此,经过一些研究(主要是这里这里),我准备了适用于所有人的解决方案。我将粘贴我的整个module.config.php数组:

return array(
    'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Literal',
                'options' => array(
                    'route'    => '/',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action'     => 'index',
                    ),
                ),
            ),
            'noModule' => 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(
                        '__NAMESPACE__' => 'Application\Controller',
                        'controller'    => 'Index',
                        'action'        => 'index',
                    ),
                ),
            ),
            // 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(
                            ),
                        ),
                    ),
                ),
            ),
        ),
    ),
    '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\Test' => 'Application\Controller\TestController'
        ),
    ),
    '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',
        ),
    ),
);

与 Zend 2 Skeleteon Application 配置相比,我添加了noModule路由和新的controller invokable- test。当然noModule路由包含Application/Controller命名空间,所以基于这个事实,你可以设置任何你需要的默认模块。现在它可以正常工作了。

当然请记住,您的noModule路线应该在第一个模块中定义,application.config.php以确保它始终优先。还要记住,默认模块解决方案应该小心完成,以避免控制器和模块名称之间的冲突,例如,如果您命名下一个模块Index,那么显然您将与模块中的命名IndexController冲突Application

于 2013-02-20T00:20:54.017 回答
0

我一般是 ZF 的新手,我刚开始学习它,所以尝试了这个,它对我有用。可以肯定的是,当您转到您的域 URL 并且不输入控制器名称时,您想更改您的默认模块,对吗?

转到你的 module.config.php

 'router' => array(
    'routes' => array(
        'album WITH CONTROLLER IN URL' => array(
            'type'    => 'segment',
            'options' => array(
                'route'    => '/album[/:action]',
                'constraints' => array(
                    'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                ),
                'defaults' => array(
                    'controller' => 'Album\Controller\Album',
                    'action'     => 'index',
                ),
            ),
        ),
        'album WITHOUT CONTROLLER IN URL' => array(
            'type'    => 'segment',
            'options' => array(
                'route'    => '/[:action]',
                'constraints' => array(
                    'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                ),
                'defaults' => array(
                    'controller' => 'Album\Controller\Album',
                    'action'     => 'index',
                ),
            ),
        ),
        'SET IT AS YOUR HOMEPAGE' => array(
            'type'    => 'segment',
            'options' => array(
                'route'    => '/',
                'defaults' => array(
                    'controller' => 'Album\Controller\Album',
                    'action'     => 'index',
                ),
            ),
        ),
    ),
),
于 2012-09-16T00:27:02.293 回答