ZF2路由在ZF1(ZF2 Routing as in ZF1)

2019-07-31 12:49发布

我怎样才能让路由在ZF1结构都自动运行?

模块/控制器/动作/ par1Name / par1Val / par2Name / par2Val /

我读到的路由信息​​,但我看到它的方式,我必须手动添加的所有行动,我看到一个问题,可选参数...

Answer 1:

您可以设置一个通配符child_route,至少在每个控制器的基础上,得到ZF1样的路线:

'products' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route' => '/products[/:action]',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Products',
                        'action' => 'index'
                    )
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'wildcard' => array(
                        'type' => 'Wildcard'
                    )
                )
            )

然后你可以使用,例如,网址()视图助手:

$this->url('products/wildcard',array('action'=>'edit','id'=>5,'foo'=>'bar');

这将产生像/产品/编辑/ ID / 5 /富/酒吧网址



Answer 2:

这是标准的路由器我使用的一切,我整体迁移ZF1 - > ZF2记住,你仍然需要将控制器添加为我已经在列表的顶部invocables。 也请记住,我总是把我在列表的底部实际应用中,使所有其它模块都会有自己的路由定义它击中的应用程序之前。 然而,这使得路由工作就像ZF1 ...我看到很多人问到这个问题,所以我想我会发布! 下面的设置,我可以再补充我的新控制器(下方支撑...),然后打开一个浏览器,访问... /支持,它工作得很好。

return array(
    'controllers' => array(
        'invokables' => array(
            'Application\Controller\Index' => 'Application\Controller\IndexController',
            'Application\Controller\Support' => 'Application\Controller\SupportController',
        ),
    ),
    'router' => array(
        'routes' => array(
            '*' => array(
                'type' => 'Segment',
                'options' => array(
                    'route' => '/[:controller[/:action]]',
                        /* OR add something like this to include the module path */
                        // 'route' => '/support/[: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',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'wildcard' => array(
                        'type' => 'Wildcard'
                    )
                )
            ),
        ),
    ),
    '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',
        ),
    ),   
    /* Service manager / translator etc stuff go HERE as they change less frequently */
);

我编辑上面的路线包括一个完整的模块路径作为我错过了我最初发表评论。



文章来源: ZF2 Routing as in ZF1