Maison >développement back-end >tutoriel php >Comment implémenter la pagination des requêtes PHP
Code HTML Cet article partage principalement avec vous la méthode d'implémentation de la pagination des requêtes PHP. Le backend est basé sur le framework thinkphp et le frontend nécessite le plug-in dataTables. J'espère que tout le monde pourra le faire.
La première étape consiste à introduire le plug-in
6e0ab5260bbfb4e234e489c7a279f1a9 7cba2a50bf6e767b3464ea3ce82f67ad 806d635094af43168be10d116e5a5866 9db43f327d72a00d68f8f2b1094aa2022cacc6d41bbb37262a98f745aa00fbf0 10508be7474e9d9608f1b198851d0815 b86f069fc5dab7a4adba05c287456c872cacc6d41bbb37262a98f745aa00fbf0
La deuxième étape consiste à ajouter
<table id="table_id_example" class="display"> <thead> <tr> <th>ID</th> <th>发布时间</th> <th>发布IP</th> <th>公告内容</th> </tr> </thead> <tbody> <volist name="notice" id="vo"> <tr> <td>{$vo.id}</td> <td>{$vo.create_time}</td> <td>{$vo.create_ip}</td> <td>{$vo.notice_content}</td> </tr> </volist> </tbody> </table>
La troisième étape est JS
3f1c4e4b6b16bbbd69b2ee476dc4f83a $(document).ready( function () { $('#table_id_example').DataTable(); } ); 2cacc6d41bbb37262a98f745aa00fbf0
Code PHP
ublic function gonggaochakan(){ /* 公告查看 */ $dbNotice = M('notice');//实例化dbNotice对象 $count = $dbNotice->count();// 查询满足要求的总记录数 $Page = new \Think\Page($count,$count);// 实例化分页类 传入总记录数和每页显示的记录数(全部记录) $data = $dbNotice->order('create_time')->limit($Page->firstRow.','.$Page->listRows)->select();//获得所有记录 $this->assign('notice',$data);//传给模板 $this->show(); }
Effet
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!