我正在研究codeigniter的分頁。我可以把它在我的網頁,但是當我點擊下一頁,它會說CodeIgniter Pagenation不起作用
Object not found! Error 404.
我,當我點擊了下,這是http://localhost/contents/index/2
放置正確。另外我注意到的一點是$config['per_page'] = 2;
當我加載頁面時,從數據庫中循環的所有數據都顯示在1頁而不是每頁2頁。
控制器
//Pagenation below
$this->load->library('pagination');
$config['base_url'] = 'http://localhost/contents/index';
$config['total_rows'] = 200;
$config['per_page'] = 2;
$this->pagination->initialize($config);
echo $this->pagination->create_links();
$data['contents'] = $this->content_model->get_content();
$data['title'] = 'Contents';
$this->load->view('template/header', $data);
$this->load->view('pages/index', $data);
$this->load->view('template/footer');
這是我主持人:缺少內容:: index()和未定義變量的參數1:offset – Katsune
我的數據未顯示T_T,並且每當Iclick no 2或3時它顯示「Object not found Error 404」,.男人我討厭那個錯誤。 – Katsune
你改變了route.php –