我正在使用 Zend\Paginator 来构造一个分页结果集。这很好用,但是,在添加搜索表单后,我无法让两者很好地结合在一起。
页面上的搜索表单生成的 URL 为:
user/index/?searchTerm=hello
如何修改 Zend 分页器配置,使其在生成的 URL 中保留 searchTerm?
我希望有类似的东西:
user/index/page/4/?searchTerm=hello
我错过了什么?
模块配置路由定义如下:
'user' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/user[/[:action[/]]][[id/:id]][/[page/:page]]',
'defaults' => array(
'controller' => 'Application\Controller\User',
'action' => 'index',
'id' => null,
),
// the below was added to try and get the searchTerm query to be retained
'may_terminate' => true,
'child_routes' => array(
'searchTerm' => array(
'type' => 'Query',
),
),
),
),
分页是在视图中使用此构造的:
echo $this->paginationControl(
$this->users, 'sliding', array('paginator', 'User'), array('route' => 'user', 'action' => 'index')
);
分页模板片段:
<li>
<a href="<?php echo $this->url($this->route, array('action' => $this->action, 'page' => $this->next), true); ?>">
Next »
</a>
</li>
(我的印象是true
作为第三个参数传递到url()
将保留查询参数。)