thinkphp自带分页类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp自带分页类相关的知识,希望对你有一定的参考价值。

thinkphp自带分页使用案例:

$Data = M(‘Data‘); // 实例化Data数据对象  date 是你的表名
    import(‘ORG.Util.Page‘);// 导入分页类
    $count = $Data->where($map)->count();// 查询满足要求的总记录数 $map表示查询条件
    $Page = new Page($count);// 实例化分页类 传入总记录数
    $show = $Page->show();// 分页显示输出
    // 进行分页数据查询
    $list = $Data->where($map)->order(‘id‘)->limit($Page->firstRow.‘,‘.$Page->listRows)->select(); // $Page->firstRow 起始条数 $Page->listRows 获取多少条
    $this->assign(‘list‘,$list);// 赋值数据集
    $this->assign(‘page‘,$show);// 赋值分页输出
    $this->display(); // 输出模板
    
    <table cellpadding=3 cellspacing=5>
<volist name="list" id="vo">
<tr>
<td >[ {$vo.create_time|date=‘Y-m-d H:i:s‘,###} ] {$vo.title} </td>
</tr>
</volist>
<tr>        
</tr>
</table>
<div class="result page">{$page}</div>

分页效果:

技术分享

以上是关于thinkphp自带分页类的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp 分页类 url 编码处理

thinkphp简洁美观靠谱的分页类

ThinkPHP使用心得分享-分页类Page的用法

ThinkPHP使用心得分享-分页类Page的用法

ThinkPHP 怎么结合Bootstrap进行分页

thinkphp简洁美观靠谱的分页类