我想重新使用查询参数在一个视图中使用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',
),
),
),
我究竟做错了什么? 谢谢你的帮助。