构建url以路由另一个模块中的控制器

时间:2013-08-27 03:14:32

标签: zend-framework2 router

我是ZF2的新手。我有疑问     url('route-name',$ urlParams,$ urlOptions); ?>

当模块中有多个控制器时,我应该构建$ urlParams和$ urlOptions?

我将Album模块重命名为Shop,它有两个控制器:indexController和VendorController。在View> Shop>供应商> index.phtml中,我添加:

<p><a href="<?php echo $this->url('shop', array('action'=>'add')); ?>">
         Add new vendor</a></p>

瞄准此链接将链接到localhost / shop / vendor / add。但页面显示的链接是:     http://host.com/shop 而我想要的是     http://host.com/shop/vendor/add

我的理解是我应该设置$ urlOPtions字段,有人可以举个例子吗?谢谢大家 下面是module.config.php:

'router' => array(
   'routes' => array(
        'shop' => array(
            'type'    => 'Literal',
            'options' => array(
                'route'    => '/shop',
                'defaults' => array(
                    '__NAMESPACE__' => 'Shop\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(
                        ),
                    ),
                ),
            ),
        ),
    ),
),
'controllers' => array(
    'invokables' => array(
        'Shop\Controller\Index' => 'Shop\Controller\IndexController',
        'Shop\Controller\Vendor'=> 'Shop\Controller\VendorController'
    ),
),

1 个答案:

答案 0 :(得分:1)

您尝试用于构建网址的路由实际上是默认的子路由。所以你应该使用它:

<p><a href="<?php echo $this->url('shop/default', array('action'=>'add')); ?>">
         Add new vendor</a></p>

请注意“购物/默认”而非购物以定位儿童路线。

此外,您应该将控制器指定为参数,因此您可以得到如下内容:

<p><a href="<?php echo $this->url('shop/default', array('controller' => 'vendor', 'action'=>'add')); ?>">
         Add new vendor</a></p>