我在CakePHP中,初學者,我的版本是2.4.3超出範圍頁面的請求
在文件我在下面找到
public function index() {
try {
$this->Paginator->paginate();
} catch (NotFoundException $e) {
//Do something here like redirecting to first or last page.
//$this->request->params['paging'] will give you required info.
}
}
我的問題示例代碼:
1.How到重定向到最後一頁,有什麼辦法可以獲得總頁數?
2.我試圖用debug()輸出$ this-> request-> params ['paging'],但沒有顯示,只是一個空值,我做錯了什麼?
請幫幫我,認爲不是可用
Got it!非常感謝你!! – Daruma