19

继此:

Yii2 SearchModel 中的 search() 是如何工作的?

我希望能够过滤一GridView列关系数据。这就是我的意思:

我有两张桌子,TableATableB。两者都有使用 Gii 生成的相应模型。TableA中的值有一个外键TableB,如下所示:

TableA
attrA1, attrA2, attrA3, TableB.attrB1

TableB
attrB1, attrB2, attrB3

attrA1 和 attrB1 是它们对应表的主键。

现在,我有一个Yii2GridView和。我有一个工作过滤器,因此我可以搜索列值。我也对这两列进行了排序 - 只需单击列标题即可。我也希望能够添加此过滤和排序。attrA2attrA3attrB2attrA2attrA3attrB2

我的TableASearch模型如下所示:

public function search($params){
    $query = TableA::find();
    $dataProvider = new ActiveDataProvider([
        'query' => $query,
    ]);

    if (!($this->load($params) && $this->validate())) {
        return $dataProvider;
    }

    $this->addCondition($query, 'attrA2');
    $this->addCondition($query, 'attrA2', true);
    $this->addCondition($query, 'attrA3');
    $this->addCondition($query, 'attrA3', true);

    return $dataProvider;
}

在我的TableA模型中,我像这样设置相关值

    public $relationalValue;

public function afterFind(){
    $b = TableB::find(['attrB1' => $this->attrB1]);
    $this->relationalValue = $b->relationalValue;
}

虽然这可能不是最好的方法。我想我必须在搜索功能的某处使用 $relationalValue 但我不确定如何。同样,我也希望能够按此列排序 - 就像我可以attrA2通过AttrA3单击标题链接一样。任何帮助,将不胜感激。谢谢。

4

3 回答 3

24

这是基于指南中的描述。SearchModel 的基本代码来自 Gii 代码生成器。这也假设 $this->TableB 已使用hasOne()orhasMany()关系设置。请参阅此文档

1.设置搜索模型

TableASearch模型中添加:

public function attributes()
{
    // add related fields to searchable attributes
    return array_merge(parent::attributes(), ['TableB.attrB1']);
}

public function rules() 
{
    return [
        /* your other rules */
        [['TableB.attrB1'], 'safe']
    ];
}

然后在TableASearch->search()添加(之前$this->load()):

$dataProvider->sort->attributes['TableB.attrB1'] = [
      'asc' => ['TableB.attrB1' => SORT_ASC],
      'desc' => ['TableB.attrB1' => SORT_DESC],
 ];

$query->joinWith(['TableB']); 

然后实际搜索您的数据(如下$this->load()):

$query->andFilterWhere([
    'like',
    'TableB.attrB1',
     $this->getAttribute('TableB.attrB1')
]);

2.配置GridView

添加到您的视图中:

echo GridView::widget([
    'dataProvider' => $dataProvider,
    'filterModel' => $searchModel,
    'columns' => [
        /* Other columns */
       'TableB1.attrB1',
        /* Other columns */        
     ]
]);
于 2014-04-09T10:16:21.933 回答
5

在 Yii 2.0 中按列过滤 gridview 非常简单。请将过滤器属性添加到具有查找值的 gridview 列,如下所示:

[
        "class" => yii\grid\DataColumn::className(),
        "attribute" => "status_id",
        'filter' => ArrayHelper::map(Status::find()->orderBy('name')->asArray()->all(), 'id', 'name'),
        "value" => function($model){
            if ($rel = $model->getStatus()->one()) {
                return yii\helpers\Html::a($rel->name,["crud/status/view", 'id' => $rel->id,],["data-pjax"=>0]);
            } else {
                return '';
            }
        },
        "format" => "raw",
], 
于 2015-01-26T08:02:57.540 回答
3

我也被这个问题困住了,我的解决方案完全不同。我有两个简单的模型:

书:

class Book extends ActiveRecord
{
    ....

    public static function tableName()
    {
        return 'books';
    }

    public function getAuthor()
    {
        return $this->hasOne(Author::className(), ['id' => 'author_id']);
    }

和作者:

class Author extends ActiveRecord
{

    public static function tableName()
    {
        return 'authors';
    }

    public function getBooks()
    {
        return $this->hasMany(Book::className(), ['author_id' => 'id']);
    }

但是我的搜索逻辑是不同的模型。而且我没有找到如何在不创建附加字段的情况下实现搜索author_first_name。所以这是我的解决方案:

class BookSearch extends Model
{
    public $id;
    public $title;
    public $author_first_name;

    public function rules()
    {
        return [
            [['id', 'author_id'], 'integer'],
            [['title', 'author_first_name'], 'safe'],
        ];
    }

    public function search($params)
    {
        $query = Book::find()->joinWith(['author' => function($query) { $query->from(['author' => 'authors']);}]);
        $dataProvider = new ActiveDataProvider([
            'query' => $query,
            'pagination' => array('pageSize' => 50),
            'sort'=>[
                'attributes'=>[
                    'author_first_name'=>[
                        'asc' => ['author.first_name' => SORT_ASC],
                        'desc' => ['author.first_name' => SORT_DESC],
                    ]
                ]
            ]
        ]);

        if (!($this->load($params) && $this->validate())) {
            return $dataProvider;
        }
        ....
        $query->andWhere(['like', 'author.first_name', $this->author_first_name]);
        return $dataProvider;
    }
}

这是用于创建表别名:function($query) { $query->from(['author' => 'authors']);}

GridView 代码是:

<?php echo GridView::widget([
    'dataProvider' => $dataProvider,
    'filterModel' => $searchModel,
    'columns' => [
        [
            'attribute' => 'id',
            'filter' => false,
        ],
        [
            'attribute' => 'title',
        ],
        [
            'attribute' => 'author_first_name',
            'value' => function ($model) {
                    if ($model->author) {
                        $model->author->getFullName();
                    } else {
                        return '';
                    }
                },
            'filter' => true,
        ],
        ['class' => 'yii\grid\ActionColumn'],
    ],
]); ?>

我将不胜感激任何批评和建议。

于 2014-04-22T19:26:17.533 回答