我正在尝试在视图中使用 Url 帮助器重用查询参数。这是我目前的网址:
http://localhost/events/index?__orderby=name&__order=asc
我在视图中使用此代码:
$this->url('events/index', array('__page' => '2'), true);
我想获得这个网址:
http://localhost/events/index?__orderby=name&__order=asc&__page=2
但相反,我得到了这个:
http://localhost/events/index?controller=Application\Controller\Events&__page=2
这是我在 module.config.php 文件中的路线:
'events' => array(
'type' => 'segment',
'options' => array(
'route' => '/eventos[/:action]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
'controller' => 'Application\Controller\Events',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'index' => array(
'type' => 'Query',
),
),
),
我究竟做错了什么?谢谢你的帮助。