模板代码:
<form class="navbar-form navbar-left" method="get"> <div class="form-group"> <input type="text" class="form-control" placeholder="Search" name="keywords"> </div> <button type="submit" class="btn btn-default">搜索</button> </form>
后端代码:
$keywords = Request::get('keywords'); $map[] = ['title','like','%'.$keywords.'%'];
使用$map [] 数组条件查询方式
$map['字段名','条件',变量]; like 模糊查询方式 与SQL 语句 LIKE 一值
like %a% 在任何位置查询具有 a 的值
like a% 查找以a为首的值
like %a 查找以a为尾的值
like _a% 查找以a为第二位的值
like a_%_% 查找以a为开头至少三个字符的值
like a%b 查找以a为头b为的值