tp5分页,一看就懂,简单明了(附带额外参数)
Posted rosey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp5分页,一看就懂,简单明了(附带额外参数)相关的知识,希望对你有一定的参考价值。
php 代码:
$result = $jjModel->where($wheres)->paginate(10,false,[‘query‘ => [‘peytype‘=>$peytypes]]); (查询10条数据,get参数‘paytype‘,根据自己情况来)
$this->assign(‘page‘, $page);
$this->assign(‘list‘,$result);
return $this->view->fetch();
html代码:
{volist name="list" id="v"}
<tr class="td_type_content">
<td align="left">{$v[‘peytype‘]}</td>
<td align="center" style="color:#05ff98">+{$v[‘coin‘]}</td>
<td id="td_type_content_btn" align="right">{$v[‘idate‘]}</td>
</tr>
{/volist}
<div id="footerss">
{$page}
</div>
简直不要太简单。。。。
以上是关于tp5分页,一看就懂,简单明了(附带额外参数)的主要内容,如果未能解决你的问题,请参考以下文章