Cakephp2与GET参数分页

时间:2012-01-25 09:21:38

标签: cakephp cakephp-2.0

我有一个带有过滤器表单的列表页面,我使用get方法提交表单。如何传递查询字符串参数以及分页链接。我查了这个链接 CakePHP pagination and the get parameters但是这个> passedArgs是空的。我正在使用cakephp2。什么是解决这个问题的最佳选择?

1 个答案:

答案 0 :(得分:2)

这是我在CakePHP 1.3项目中使用的一些代码。我相信它仍然可以在CakePHP 2.0上运行(把它放在你的过滤器形式的视图中):

// Make sure we pass any set filters to the Paginator helper
$urlParams = $this->params['url'];
unset($urlParams['url']);

$this->Paginator->options(array('url' => array('?' => http_build_query($urlParams))));