1
我使用cakephp 2.5.6,我想在我的視圖文件中顯示數組。我嘗試將CakePHP默認分頁與此數組,但它不起作用。這裏是我的示例代碼如何將cakephp默認分頁數組
---'my_pages' controller-----
public function view(){
//some other code
$resultArray = $this->MyPages->getResults();
$resultArray = $this->Paginator->paginate('resultArray');
$this->set(compact('resultArray','rightPanel'));
}
和我的視圖文件
----- 'view.ctp' file ------
//some other code
foreach ($resultArray as $result){
echo $result['subject'];
echo $result['body'];
}
在我的情況下,該$resultArray
有近百元素,我想把分頁此頁面上。那麼是否有可能在這種情況下使用cakephp默認分頁?謝謝:)
謝謝:),當我把你的答案它的工作。但鑑於每頁頁面項目不能正常工作,我嘗試了很多方法,但似乎不工作。使用調試器顯示分頁限制和其他變量是正確的。但當前頁面顯示9.不知道爲什麼是這樣,你有一個想法,爲什麼它的行爲是這樣的。 – indrarajw 2015-03-05 13:34:43