当Relation是同一张表中的键时,使用CGridView在Yii中按相关模型搜索和排序

Posted

技术标签:

【中文标题】当Relation是同一张表中的键时,使用CGridView在Yii中按相关模型搜索和排序【英文标题】:Searching and sorting by related model in Yii with CGridView when Relation is a key in the same table 【发布时间】:2012-11-04 15:06:06 【问题描述】:

这里有一篇关于在 CGridView 中按相关模型搜索和排序的综合文章:http://www.yiiframework.com/wiki/281/searching-and-sorting-by-related-model-in-cgridview/我已经成功实现了很多次。

但是,现在我正在尝试按同一个表中的关系进行搜索和排序(它定义了 parent_id)。请参阅下面的“父”关系:

public function relations()

    return array(
        'parent' => array(self::BELONGS_TO, 'Category', 'parent_id'),
        'children' => array(self::HAS_MANY, 'Category', 'parent_id'),
        'childCount' => array(self::STAT, 'Category', 'parent_id'),
        'author0' => array(self::BELONGS_TO, 'User', 'author'),
        'contents' => array(self::MANY_MANY, 'Content', 'content_category(content_id, category_id)'),
        'crsContents' => array(self::MANY_MANY, 'ContentCrs', 'content_category(content_id, category_id)'),
    );


public function defaultScope()

    return array(
        'alias'=>'cat',
        'order'=>"cat.name ASC",
    );

当我实现 wiki 指定的方法时,我收到以下错误:

CDbCommand failed to execute the SQL statement: SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'cat'. The SQL statement executed was: SELECT COUNT(DISTINCT `cat`.`id`) FROM `category` `cat` LEFT OUTER JOIN `category` `cat` ON (`cat`.`parent_id`=`cat`.`id`) WHERE (cat.parent_id <> 257)

如何确保 LEFT OUTER JOIN 为关系使用唯一的表别名,例如 parent,以便我可以在 search() 中正确定义我的 CDbCriteria

编辑

根据@tereško 的要求,这是我的 search() 函数。我知道它是有缺陷的,因为我没有定义它时指定的表别名parent...我只是不知道怎么做!

public function search()

    $criteria=new CDbCriteria;
    $criteria->with = array('parent');

    $criteria->compare('id',$this->id,true);
    $criteria->compare('author',$this->author,true);
    $criteria->compare('name',$this->name,true);
    $criteria->compare('description',$this->description,true);
    $criteria->compare('parent_id',$this->parent_id,true);
    $criteria->compare('parent.name', $this->parent_search, true );
    $criteria->compare('type',$this->type,true);
    $criteria->compare('slug',$this->slug,true);
    $criteria->compare('created',$this->created,true);
    $criteria->compare('updated',$this->updated,true);

    return new CActiveDataProvider($this, array(
        'criteria'=>$criteria,
            'sort'=>array(
                'attributes'=>array(
                    'parent_search'=>array(
                        'asc'=>'parent.name',
                        'desc'=>'parent.name DESC',
                    ),
                    '*',
                ),
            ),
        )
    );

【问题讨论】:

你能粘贴你的 search() 代码吗? @GBD :我补充说。有什么想法吗? 试试$criteria-&gt;with = array('parent'=&gt;array('alias'=&gt;'p')); @GBD - 准点! :) 工作完美。非常感谢!请注意,我使用$criteria-&gt;with = array('parent'=&gt;array('alias'=&gt;'parent')); 让它与上面的代码一起正常工作。 【参考方案1】:

您可以为父关系指定别名,如下所示

$criteria->with = array(
   'parent'=>array(
      'alias'=>'parent'
    )
);      

【讨论】:

以上是关于当Relation是同一张表中的键时,使用CGridView在Yii中按相关模型搜索和排序的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Relation::morphMap() 用于不同的类

当用于模式匹配作为映射中的键时,变量是未绑定的

Hashmap:当我们放置相同的键时地图如何工作[重复]

查找列的 MIN / MAX,当同一张表中的其他列 DO / DONT 有 NULL

当用户从 Vue.js 中的 JSON 对象中选择第一个键时,如何显示剩余的键值?

laravel中的递归外键[重复]