當我使用create_pagination()助手創建一個帶分頁模塊時,我在鏈接中得到一個問號。限制已被設置爲6,所以我期望鏈接按照0,6,12,18的順序排列,但是Im得到1?,2?,3 ?.PyroCMS分頁不起作用
這是正在生成什麼:
<a href="http://site.com/mymodule/page/?">1</a>
<a href="http://site.com/mymodule/page/2?">2</a>
這是II期待:
<a href="http://site.com/mymodule/page/">1</a>
<a href="http://site.com/mymodule/page/6?">2</a>
通過在控制器中的代碼Im爲;
public function index($offset = 0)
{
$limit = 6;
$total_items = $this->mymodel_m->count_all();
$items = $this->mymodel_m
->limit($limit)->offset($offset )
->get_all();
$data->pagination = create_pagination('mymodule/page/', $total_items, $limit, 3);
...
}
任何援助將不勝感激。
我有同樣的問題,我已經「修理」它用笨 –