使用 Url 视图帮助链接时从 URL 中删除参数
使用 Url view helper 构建链接时,如果当前页面的 url 中有参数,则 Url view helper 生成的 url 也会包含参数。
例如,在页面 /controller/action/param/value/ 中,以下代码:
<a href="<?php echo $this->url(array(
'controller' => 'index',
'action' => 'index'
)) ?>">Dashboard</a>
将输出:
<a href="/index/index/param/value/">Dashboard</a>
是否可以清除参数助手输出的 url?
When using the Url view helper to build links, if the current page has parameters in the url, the url generated by the Url view helper will contains parameters as well.
For instance in the page /controller/action/param/value/ the following code:
<a href="<?php echo $this->url(array(
'controller' => 'index',
'action' => 'index'
)) ?>">Dashboard</a>
will output:
<a href="/index/index/param/value/">Dashboard</a>
Is it possible to clean the url outputted by the helper of parameters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为助手的第三个参数将清除默认参数,例如
文档:http://framework.zend.com/manual/en/zend.view.helpers.html#zend.view.helpers.initial
I think the third parameter to the helper will clear the default params, e.g.
Documentation: http://framework.zend.com/manual/en/zend.view.helpers.html#zend.view.helpers.initial