我是代码点火器的新手。 问题是分页正确切换页面,但编号 1 2>不会改变。它始终保留在第一个数字上(不依赖于有多少页面。页码正确显示)。
$this->load->library('pagination');
$config['base_url'] = base_url()."index.php/news/filter/0/0/";
$config['total_rows'] = $totalRows; //get number or rows
$config['per_page'] = 9;
$this->pagination->initialize($config);
$data['pages']=$this->pagination->create_links(); // this is used to show on page
比较手动一切都是正确的。有什么想法吗?
添加$ config ['uri_segment'] = 5;修好了。谢谢。