//所有新闻 public function all_news(){ $Article=M("Article"); $where['article_type']=1; //查询满足要求的总的记录数 $count=$Article->where($where)->count(); //实例化分页类传入总记录数和煤业显示的记录数 $Page=new \Think\Page($count,1); //分页显示输出 $show=$Page->show(); // 进行分页数据查询 注意limit方法的参数要使用Page类的属性 $news=$Article->where($where)->order('pub_time')->field('id,title,institution_type,author_name,pub_time')->limit($Page->firstRow.','.$Page->listRows)->select(); //赋值数据集 $this->assign('news',$news); //赋值分页输出 $this->assign('page',$show); $this->display(); }
3.html中只需要
<div> {$page}
以上所述是小编给大家介绍的thinkphp框架page类与bootstrap分页(美化),希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
您可能感兴趣的文章: