zoukankan      html  css  js  c++  java
  • Yii2框架学习 4-1 modelSearch类学习 自定义搜索,关联查询

    1、数据提供者DataProvider,如用在modelsearch类中

     

     

     

    <?php
    
    namespace commonmodels;
    
    use Yii;
    use yiiaseModel;
    use yiidataActiveDataProvider;
    use commonmodelsPost;
    
    /**
     * PostSearch represents the model behind the search form about `commonmodelsPost`.
     */
    class PostSearch extends Post
    {
    
        //增加数据的字段属性
        public function attributes()
        {
            return array_merge(parent::attributes(), ['author_name']);
        }
    
        /**
         * @inheritdoc
         */
        public function rules()
        {
            return [
                [['id', 'status', 'create_time', 'update_time', 'author_id'], 'integer'],
                [['title', 'content', 'tags', 'author_name'], 'safe'],
            ];
        }
    
        /**
         * @inheritdoc
         */
        public function scenarios()
        {
            // bypass scenarios() implementation in the parent class
            return Model::scenarios();
        }
    
        /**
         * Creates data provider instance with search query applied
         *
         * @param array $params
         *
         * @return ActiveDataProvider
         */
        public function search($params)
        {
            $query = Post::find();
    
            // add conditions that should always apply here
    
            $dataProvider = new ActiveDataProvider([
                'query' => $query,
                 'pagination' => [
                    'pageSize' => 10,
                 ]
            ]);
    
            $this->load($params);
    
            if (!$this->validate()) {
                // uncomment the following line if you do not want to return any records when validation fails
                // $query->where('0=1');
                return $dataProvider;
            }
    
            // grid filtering conditions
            $query->andFilterWhere([
                'id' => $this->id,
                'status' => $this->status,
                'create_time' => $this->create_time,
                'update_time' => $this->update_time,
                'author_id' => $this->author_id,
            ]);
    
            $query->andFilterWhere(['like', 'title', $this->title])
                ->andFilterWhere(['like', 'content', $this->content])
                ->andFilterWhere(['like', 'tags', $this->tags]);
    
            //增加自定义查询
            $query->join('INNER JOIN', 'adminuser', 'post.author_id = adminuser.id');
            $query->andFilterWhere(['like', 'adminuser.nickname', $this->author_name]);
    
    
            //增加自定义的索引字段
            $dataProvider->sort->attributes['author_name'] = [
                'asc' => ['adminuser.nickname'=>SORT_ASC],
                'desc' => ['adminuser.nickname'=>SORT_DESC],
            ];

        //设置待审核的排在前面
        $dataProvider->sort->defaultOrder = [
        'status' => SORT_ASC,
        'id' => SORT_DESC
        ];

    return $dataProvider; } }
  • 相关阅读:
    前端生成二维码插件jquery.qrcode.min.js
    Spring的PropertyPlaceholderConfigurer
    Mysql5.7.20安装随笔
    Tomcat配置虚拟目录(目录+文件)
    js中的特殊类型
    使用 adb 命令一次性为多个设备安装 apk
    高通工具使用指导书
    QXDM及QCAT软件使用入门指南V1.0
    CTS测试笔记
    Android adb shell启动应用程序的方法
  • 原文地址:https://www.cnblogs.com/gaogaoxingxing/p/12729587.html
Copyright © 2011-2022 走看看