thinkPHP5.0分页传参

Posted 雨筠

tags:

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

分页函数paginate(),主要参数有:list_rows每页数量、page当前页、path URL路径、query URL额外参数、fragment URL锚点、type分页l类型

public function index($aid=null)

{

  $res = db("pics")->paginate(1,faler,[‘query‘=>[‘aid‘=>$aid]]);

  $this->assign(‘pics‘, $res);

  return view(‘article_pic‘);

}

这样就会带上参数aid

以上是关于thinkPHP5.0分页传参的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp5.0分页

thinkphp5.0 与thinkphp5.1 db()函数的区别

ThinkPHP5.0.x SQL注⼊

关于ThinkPHP5.0的渲染模板输出

thinkphp5.0.5怎么自定义命名上传文件

ThinkPHP5.0.x 反序列化