thinkphp5分页传参
Posted Champion-水龙果
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5分页传参相关的知识,希望对你有一定的参考价值。
$name = input(\'get.searchKey/s\'); if($name != ""){ $this->assign(\'searchKey\', $name); $map[\'name\'] = [\'like\',\'%\'.$name.\'%\']; } $map[\'delete\'] = 0; $list = Db::name(\'goods\')->where($map) ->paginate(10,false,[\'query\'=>request()->param()]); $this->assign(\'list\', $list) ->assign(\'empty\', \'<td colspan="9">暂无数据</td>\'); return $this->fetch();
以上是关于thinkphp5分页传参的主要内容,如果未能解决你的问题,请参考以下文章