网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的范文:

 

标题 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
    希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。
随便看

 

在线学习网范文大全提供好词好句、学习总结、工作总结、演讲稿等写作素材及范文模板,是学习及工作的有利工具。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/21 1:26:02