本文實(shí)例講述了ThinkPHP3.2框架自帶分頁(yè)功能實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:
1.前端-分頁(yè)代碼:
tfoot>
!--分頁(yè)顯示?-->
tr>
td textalign="center" cl nowrap="true" colspan="9" height="20">
div class="pages">{$page}/div>
/td>
/tr>
/tfoot>
2.創(chuàng)建分頁(yè)樣式:如page.css 并將以下代碼復(fù)制到該文件中
.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; color:#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.前端頁(yè)面引入分頁(yè)樣式css文件
4.控制器中編寫(xiě)index方法,將數(shù)據(jù)顯示到模板
方法(一):利用Page類和limit方法分頁(yè)
?php
namespace Admin\Controller;
use Think\Controller;
class DocController extends Controller{
function index(){
//實(shí)例化Doc數(shù)據(jù)表模型
$doc = D('Doc');
//調(diào)用count方法查詢要顯示的數(shù)據(jù)總記錄數(shù)
$count = $doc->count();
//echo $count;die;
$page = new \Think\Page($count,2);
// 分頁(yè)顯示輸出
$show = $page->show();
$this->assign('page',$show);
// 進(jìn)行分頁(yè)數(shù)據(jù)查詢 注意limit方法的參數(shù)要使用Page類的屬性
$doc_list = $doc->limit($page->firstRow.','.$page->listRows)->select();
$this->assign('doc_list',$doc_list);
$this->display();
}
方法(二):分頁(yè)類和page方法的實(shí)現(xiàn)分頁(yè)
?php
namespace Admin\Controller;
use Think\Controller;
class DocController extends Controller{
function index(){
//實(shí)例化Doc數(shù)據(jù)表模型
$doc = D('Doc');
//進(jìn)行分頁(yè)數(shù)據(jù)查詢 注意page方法的參數(shù)的前面部分是當(dāng)前的頁(yè)數(shù)使用 $_GET[p]獲取
$doc_list = $doc->page($_GET['p'] . ',2')->select();
$this->assign('doc_list', $doc_list);// 賦值數(shù)據(jù)集
$count = $doc->count();// 查詢滿足要求的總記錄數(shù)
$page = new \Think\Page($count, 2);// 實(shí)例化分頁(yè)類 傳入總記錄數(shù)和每頁(yè)顯示的記錄數(shù)
$show = $page->show();// 分頁(yè)顯示輸出
$this->assign('page', $show);// 賦值分頁(yè)輸出
$this->display(); // 輸出模板
}
更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門(mén)教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門(mén)教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門(mén)教程》及《PHP模板技術(shù)總結(jié)》。
希望本文所述對(duì)大家基于ThinkPHP框架的PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- ThinkPHP3.2.3實(shí)現(xiàn)分頁(yè)的方法詳解
- thinkPHP3.2實(shí)現(xiàn)分頁(yè)自定義樣式的方法
- Thinkphp3.2.3分頁(yè)使用實(shí)例解析
- thinkphp3.2.3 分頁(yè)代碼分享
- thinkPHP3.2.3結(jié)合Laypage實(shí)現(xiàn)的分頁(yè)功能示例
- thinkPHP5框架實(shí)現(xiàn)分頁(yè)查詢功能的方法示例
- thinkphp框架page類與bootstrap分頁(yè)(美化)
- thinkPHP5框架實(shí)現(xiàn)基于ajax的分頁(yè)功能示例
- thinkPHP5框架分頁(yè)樣式類完整示例