如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
--PHP-- public function page(){ $User = M('user'); // 实例化User对象 $count = $User->count();// 查询满足要求的总记录数 $Page = new \Think\Page($count,2);// 实例化分页类 传入总记录数 和每页显示的记录数(25) $show = $Page->show();// 分页显示输出 // 进行分页数据查询 注意limit方法的参数要使用Page类的属性 $list = $User->order('createtime')->limit($Page->firstRow.','.$Page- >listRows)->select(); $this->assign('list',$list);// 赋值数据集 查询的信息 // dump($list); // echo "<pre>"; // print_r($Page); $this->assign('page',$show);// 赋值分页输出 $this->display(); // 输出模板 } --HTML-- <style> .rows a{ text-decoration: none; border: 1px solid #CCCCCC; color: #00A3DA;margin-right: 20px; padding:8px 12px; margin-right: 15px; /*size: 20px;*/ } .rows{ text-align: center; size: 20px; } .current{ margin:0 15px 0 0; } </style> <div class="rows" >{{$page}}</div>