如何網站建設使用Zend_Paginator進行分頁,這裏就不說了,簡單的分頁在手冊上已經有了,網上也能夠找到資料。php
可是用分頁傳遞參數,可能就不太好找了,幾經周折,終於搞定了,用的是paginationControl的第四個參數,第四個 也是最後一個參數 是一個可選的保留關聯數組更多的變量,也就是用來傳參數的。參考方案
在控制器中:
[php]
$this->view->dataList = $paginator;
$this->view->requestParams = $this->_request->getParams();
php]
在視圖中:
<?php
echo $this->paginationControl(
$this->dataList,
'Sliding',
'pagination.html',
array('requestParams' => $this->requestParams)
);
?>
pagination.html部份代碼:
url(array_merge($this->requestParams, array('page'=>$this->previous))) ?>(fblww-0223)html