この記事では、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, ]); }
コードをコピーします コードは次のとおりです:
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 中国語 Web サイトの他の関連記事を参照してください。