|
我都分页 路径中包含一个新闻的分类:$config['base_url'] = base_url().'index.php/news/newsList/'.$condition['category'].'/';
$config['total_rows'] = $total_rows;
$config['per_page'] = 15;
$config['num_links'] = 10;
$config['first_link']='首页';
$config['last_link']='末页';
$config['next_link']='下一页';
$config['prev_link']='上一页';
$query = $this->db->get('news',$config['per_page'],$this->uri->segment(4));
但是页面分页会出现这样的错误: 我点击下一页没有显示成 上一页 1 2
还是这样的效果 但是数据是第二页的数据
实在搞不懂什么原因
请教各位大侠 |
|