本文实例讲述了thinkphp3.2框架自带分页功能实现方法。分享给大家供大家参考,具体如下:
1.前端-分页代码:
<tfoot><!--分页显示?--><tr> <td textalign="center" cl nowrap="true" colspan="9" height="20"> <div class="pages">{$page}</div> </td></tr></tfoot>
2.创建分页样式:如page.css 并将以下代码复制到该文件中
.pages{float: right}.pages a,.pages span { display:inline-block; padding:2px 10px; border:1px solid #f0f0f0; -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px; font-size: 14px;}.pages a,.pages li {沈阳理工大学排名 display:inline-block; list-style: none; text-decoration:none; co1小lor:#58a0d3;}.pages a.first,.pages a.prev,.pages a.next,.pages a.end{ margin:0 auto;}.pages a:hover{ border-color:#50a8e6;}.pages span.current{ background:#50a8e6; color:#fff; font-weight:700; border-color:#50a8e6;}
3.前端页面引入分页样式css文件
4.控制器中编写index方法,将数据显示到模板
方法(一):利用page类和limit方法分页
<?phpnamespace admin\controller;u think\controller;class doccontroller extends controller{ function index(){ //实例化doc数据表模型 $doc = d('doc'); //调用coun瑞穗的静夜阅读答案t方法查询要显示的数据总记录数 $count = $doc->count(); //echo $count;die; $page = new \think\page($count,2); // 分页显示输出 $show = $page->show(); $this->assign('page',$show); // 进行分页数据查询 注意limit方法的参数要使用page类的属性 $doc_list = $doc->limit($page->firstrow.','.$page->listrows)->lect(); $this->assign('doc_list',$doc_list); $this->display(); }
方法(二):分页类和page方法的实现分页
<?phpnamespace admin\controller;u think\controller;class doccontroller extends controller{ function物理教案 index(){ //实例化doc数据表模型 $doc = d('doc'); //进行分页数据查询 注意page方法的参数的前面部分是当前的页数使用 $_get[p]获取 $doc_list = $doc->page($_get['p'] . ',2')->lect(); $this->assign('doc_list', $doc_list);// 赋值数据集 $count = $doc->count();// 查询满足要求的总记录数 $page = new \think\page($count, 2);// 实例化分页类 传入总记录数和每页显示的记录数 $show = $page->show();// 分页显示输出 $this->assign('page', $show);// 赋值分页输出 $this->display(); // 输出模板 }
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《code我的责任igniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
本文发布于:2023-04-07 09:53:25,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/eeaa00147574b8684d16baa5b613e1ea.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:ThinkPHP3.2框架自带分页功能实现方法示例.doc
本文 PDF 下载地址:ThinkPHP3.2框架自带分页功能实现方法示例.pdf
留言与评论(共有 0 条评论) |