我的 Zend Framework 2 应用程序有一个路由定义,它试图模仿 Zend Framework 1 的默认路由。看起来像:
'router' => array(
'routes' => array(
'default' => array(
'type' => 'segment',
'options' => array(
'route' => '/[:controller[/:action]]',
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'wildcard' => array(
'type' => 'wildcard',
),
),
),
),
),
它与路由匹配得很好,但我不能使用Url
视图助手来组装带有任意参数的路由。
例如,
$this->url('default', array('controller' => 'test', 'action' => 'test', 'id' => 5));
结果/test/test
代替/test/test/id/5
.
有谁知道如何组装这样的部分路线?或者有没有更好的方法来获得 ZF1 风格的路线?