12

我正在寻找有关 ZF2 路由器配置的帮助。

我想在开发环境中将多个控制器添加到单个模块中,尽管最终必须弄清楚如何指定特定的路由。

为此,我目前正在尝试使用 MVC 快速入门文档中指定的通用 module.config。但是,这似乎不像 ZF2 文档所建议的那样执行。

http://framework.zend.com/manual/2.0/en/modules/zend.mvc.quick-start.html

文档说明:

“ZendSkeletonApplication 附带了一个“默认路由”,它可能会让您执行此操作。该路由基本上需要“/{module}/{controller}/{action}”,它允许您指定:“/zend-user/ hello/world”。我们将在这里创建一个路由,主要是为了说明目的,因为创建显式路由是推荐的做法。”

但是,控制器渲染 /landlord、/landlord/home/index,而不是 /landlord/sandbox/index。Home 和沙盒是控制器。沙盒已根据命名约定“SandboxController”进行命名。我的看法是,文档中代码的 child_routes 部分可能需要一些我错过的修改。

在沙箱实例中,我在 404 错误页面上收到此错误。

Landlord\Controller\Sandbox(解析为无效的控制器类或别名:Landlord\Controller\Sandbox)

我尝试将 'Landlord\Controller\Sandbox' => 'Landlord\Controller\SandboxController', 添加到可调用对象中,但这会产生错误。

我的控制器如下所列:

return array(
'controllers' => array(
    'invokables' => array(
        'Landlord\Controller\Home' => 'Landlord\Controller\HomeController',

    ),
),
'router' => array(
    'routes' => array(
        'landlord' => array(
            'type'    => 'Literal',
            'options' => array(
                // Change this to something specific to your module
                'route'    => '/landlord',
                'defaults' => array(
                    // Change this value to reflect the namespace in which
                    // the controllers for your module are found
                    '__NAMESPACE__' => 'Landlord\Controller',
                    'controller'    => 'home',
                    'action'        => 'index',
                ),
            ),
            'may_terminate' => true,
            'child_routes' => array(
                // This route is a sane default when developing a module;
                // as you solidify the routes for your module, however,
                // you may want to remove it and replace it with more
                // specific routes.
                '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(
                        ),
                    ),
                ),
            ),
        ),
    ),
),
'view_manager' => array(
    'template_path_stack' => array(
        'landlord' => __DIR__ . '/../view',
    ),
),
);

如果有一种简单的方法可以直接配置 url,这也会很有用,或者一个非常好的教程,这也将不胜感激。

4

4 回答 4

26

这里的问题是,即使路由器会尝试路由到您添加的新控制器,您仍然需要为您添加的每个控制器添加 Invokable 部分。因此,此时您的路由器似乎很好,但是如果您添加例如一个新的 AboutController,那么您将需要像这样修改配置的顶部...

return array(
'controllers' => array(
    'invokables' => array(
        'Landlord\Controller\Home' => 'Landlord\Controller\HomeController',
        'Landlord\Controller\About' => 'Landlord\Controller\AboutController',
    ),
),
于 2012-11-30T18:34:53.970 回答
3

只需找到答案...在此处发布,它可能会对某些人有所帮助...我假设您已遵循 zf2 docs 提供的专辑模块示例,现在添加新模块,例如在我的情况下为“管理员”,我添加新的控制器,如管理员、新闻等,

这是路由器设置...

'router' => array(
        'routes' => array(
            'admin' => array(
                'type' => 'segment',
                'options' => array(
                    'route' => '/admin/admin[/:action][/:id]',
                    'constraints' => array(
                        'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                        'id' => '[0-9]+',
                    ),
                    'defaults' => array(
                        'controller' => 'Admin\Controller\Admin',
                        'action' => 'index',
                    ),
                ),

            ),
            'news' => array(
                'type' => 'segment',
                'options' => array(
                    'route' => '/admin/news[/:action][/:id]',
                    'constraints' => array(
                        'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                        'id' => '[0-9]+',
                    ),
                    'defaults' => array(
                        'controller' => 'Admin\Controller\News',
                        'action' => 'index',
                    ),
                ),

            ),
        ),
    ),

在这里添加你的控制器..

'controllers' => array(
        'invokables' => array(
            'Admin\Controller\News' => 'Admin\Controller\NewsController',
            'Admin\Controller\Admin' => 'Admin\Controller\AdminController',

        ),
    ),

现在你可以在你的模块中调用你的控制器,就像我的例子一样

localhost/{foldername}/admin/news/index and localhost/{foldername}/admin/admin/index

谢谢

于 2013-01-30T20:14:13.247 回答
1

我也是这种情况,我找到了与上一篇文章一样的解决方案,但我认为这不是更好的方法。

为了在我的路由中添加 le “clientController”:

'router' => array(
    'routes' => array(
        'home' => array(
            'type' => 'Zend\Mvc\Router\Http\Literal',
            'options' => array(
                'route' => '/',
                'defaults' => array(
                    'controller' => 'Fcm\Controller\Index',
                    'action' => 'index',
                ),
            ),
        ),
        'client' => array(
            'type' => 'Segment',
            'options' => array(
                'route' => '/client[/:action][/:id]',
                'constraints' => array(
                    'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                    'id' => '[0-9]+',
                ),
                'defaults' => array(
                    'controller' => 'Fcm\Controller\Client',
                    'action' => 'index',
                ),
            ),
        ),
    ),
),
于 2013-05-28T12:01:47.070 回答
0

像这样配置路由:-
模块:- 用户
控制器:- IndexController

'router' => array(
        'routes' => array(
            'users' => array(
                'type' => 'Literal',
                'options' => array(
                    // Change this to something specific toyour module
                    'route' => '/users',
                    'defaults' => array(
                                // Change this value to reflect the namespace in which
                        // the controllers for your module are found
                        '__NAMESPACE__' => 'Users\Controller',
                        'controller' => 'Index',
                        'action' => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'default' => array(
                        'type' => 'Segment',
                        'options' => array(
                            'route' =>
                            '/[:controller[/:action][/:id]]',
                            'constraints' => array(
                                'controller' =>'[a-zA-Z][a-zA-Z0-9_-]*',
                                'action' =>'[a-zA-Z][a-zA-Z0-9_-]*',
                                'id' =>'[0-9]+',
                            ),
                            'defaults' => array(
                            ),
                        ),
                    ),
                ),
            ),
        ),
    ),
于 2015-11-29T10:20:08.760 回答