我要做的是使用url view helper in Zend Framework 2
生成网址我想要生成的网址应该是 my-website.com/app/##(其中##等于“ownerID”)
当我使用视图助手生成此内容时会发生什么:
$this->url('mymodule', array('action'=>'show', 'ownerID'=>'28'));
是否仅生成“my-website.com/app”,但我希望根据路由配置“my-website.com/app/28”。
这是我的module.config.php文件中的路由信息
'router' => array(
'routes' => array(
'mymodule' => array(
'type' => 'segment',
'options' => array(
'route' => '/app',
'defaults' => array(
'controller' => 'MyModule\Controller\MyModule',
'action' => 'show',
),
),
// Defines that "/app" can be matched on its own without a child route being matched
'may_terminate' => true,
'child_routes' => array(
'archive' => array(
'type' => 'segment',
'options' => array(
'route' => '/:action[/:ownerID[/:clientID]]',
'defaults' => array(
),
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'ownerID' => '[0-9]+',
'clientID' => '[0-9]+',
)
),
),
'single' => array(
'type' => 'segment',
'options' => array(
'route' => '/:ownerID[/:clientID]',
'defaults' => array(
'action' => 'show',
),
'constraints' => array(
'ownerID' => '[0-9]+',
'clientID' => '[0-9]+',
)
),
),
)
),
)
),
使用$ this-> redirect() - > toRoute时会出现同样的行为。
当您手动输入时,所有路线都按预期工作,这只是生成我难以接受的URL。
答案 0 :(得分:0)
为了更直接地回答这个问题,它没有做你期望的事情,因为你只是将顶级路由名称(" mymodule")传递给URL助手。 ownerID是子路径的一部分。
你真正想要的是:
$this->url('mymodule/archive', array('action'=>'show', 'ownerID'=>'28'));
(或可能是mymodule/single
,具体取决于您想要的输出。)