thinkphp 在做搜索时的注意点

1.在控制器里里面的 获取要搜索的词的时候 一定要使用  input('name') ; 不能去input('post.name') 之类的 否则搜索传参数的时候 url地址栏 GET 不到这个地址

2. 传参方式 :

demo:

 $map['fareas']  = ['like',"%".$keywords."%"];

$res = db('ordera')->where(['isdel'=>'1'])->where($map)->paginate(20,false,$config = [

'query'=>array('key'=>$keywords,'key_id'=>$keyid)]);

原文地址:https://www.cnblogs.com/leilei-1/p/7256572.html