這篇文章主要介紹了Yii2實現同時搜尋多個字段的方法,結合實例形式分析了Yii2中同時搜索多個字段所使用的函數與具體使用方法,需要的朋友可以參考下
本文實例講述了Yii2實作同時搜尋多個欄位的方法。分享給大家供大家參考,具體如下:
Yii2中搜尋欄位是用的andFilterWhere這個方法,用它可以搜尋一個一段。
如果是搜尋多個欄位的話,例如搜尋文章標題和文章內容是是否包含需要搜尋的關鍵字,因為他們兩個的關係是or,所以就要用到orFilterWhere這個方法
下面就是全部的程式碼
public function actionIndex() { $key =Yii::$app->request->post("key"); $query = Post::find()->joinWith('cate'); $post = $query->orderBy(['post.id' => SORT_DESC])->asArray()->where(['post.status' => 1]); if($key){ $post->andFilterWhere(['like', 'post.title', $key]) ->orFilterWhere(['like', 'post.content', $key]); } $pages = new Pagination([ 'totalCount' => $post->count(), 'defaultPageSize' => 10 ]); $model = $post->offset($pages->offset)->limit($pages->limit)->all(); return $this->render('index', [ 'model' => $model, 'pages' => $pages, ]); }
可以看到sql語句如下:
複製程式碼 程式碼如下:
select count(*) from `post` left join `category` on `post`.`cate_id`=`category`.`id` where ((`post`.`status`=1) and (`post`.`title` like '%key%')) or (`post`.`content` like '%key%') order by `post`.`id` desc select `post`.* from `post` left join `category` on `post`.`cate_id`=`category`.`id` where ((`post`.`status`=1) and (`post`.`title` like '%key%')) or (`post`.`content` like '%key%') order by `post`.`id` desc limit 10
相關推薦:
##
以上是Yii2實作同時搜尋多個欄位的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!