搜索分页

Posted gwhm

tags:

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

<link rel="stylesheet" href="__STATIC__/css/bootstrap.min.css"/>
<form action="{:url(‘index/sou‘)}" method="post">
<input type="text" placeholder="请输入管理员名称" name="word"/><input type="submit" value="搜用户"/>
public function sou(){
$word=Request::instance()->param("word");
$res=Db::table("user")
->where("phone","like","%$word%")
->whereOr("name","like","%$word%")
->paginate(3,false,[‘query‘=>request()->param()]);
// print_r($res);
$this->assign(‘list‘, $res);
$count = Db::table("user")->count();

// 渲染模板输出
return $this->fetch("show",[‘arr‘=>$res,‘a‘=>$count]);
}














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

react-slick 自定义分页分页道具使用

单页分页问题中的多个角度材料表

梦内容页分页标题提取

一个视图中的 CI 多页分页,

以多页分页打印所有数据

当我在基于类的视图中应用过滤器时,如何在 django 中使用分页分页。网址总是不断变化我如何跟踪网址