0

我正在使用 Cgridview 显示与“UserFlag”模型相关的“User”模型的结果。

“用户”模型 -> tbl_user(id、名称、密码、标志) “标志”模型 -> tbl_userFlag(id、标志)

两个模型的 id 含义相同。但是,标志的含义不同(我不能修改数据库,所以必须坚持使用它),我需要在同一个 gridview 上显示它们。

我遇到的问题是 gridview可以正确显示两个标志,但是当我尝试从“用户”模型中排序和过滤标志时它失败并显示错误。(但是,对于“UserFlag”模型中的标志,排序和过滤工作正常。)

我该如何解决?

错误日志:
CDbCommand failed to prepare the SQL statement: SQLSTATE[HY000]: General error: 1 ambiguous column name: flag.

“用户”模型:

class User extends CActiveRecord
{

public function relations()
{
    return array(
        'FLAG' => array(self::HAS_ONE, 'UserFlag','id'),
    );
}
public function search()
{
    $criteria=new CDbCriteria;
    $criteria->compare('id',$this->id);
    $criteria->compare('name',$this->username,true);
    $criteria->compare('password',$this->password,true);
    $criteria->compare('flag',$this->flag,true);
    $criteria->with = array(
        'FLAG' => array(
                'select' => 'FLAG.flag',
                'together' => true,
        )
    );
    $criteria->compare('FLAG.flag',$this->flagFromB,true);


    return new CActiveDataProvider($this, array(
        'criteria'=>$criteria,
        'sort'=> array(
            'attributes'=>array(
                'flagFromB' => array(
                    'asc' => 'FLAG.flag',
                    'desc' => 'FLAG.flag DESC',
                ),
                '*',
            ),
        ),
    ));
}

“UserFlag”模型:
链接到表 tbl_userFlag (id, flag)

“用户”视图:

$this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'user-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        'id',
        'username',
        'password',
        'email',
        'flag',

        array(
            'name' => 'flagFromB',
            'type' => 'raw',
            'value' => '$data->FLAG->flag',
        ),

        array(
            'class'=>'CButtonColumn',
        ),
    ),
));
4

1 回答 1

0

你可以改变你的模态关系。

User.php 模态文件。

<?php
class User extends CActiveRecord {

    public function relations() {
        return array(
            'FLAG' => array(self::BELONGS_TO, 'UserFlag', 'id'),
        );
    }
    public function search() {
        $criteria = new CDbCriteria;
        $criteria->compare('id', $this->id);
        $criteria->compare('name', $this->username, true);
        $criteria->compare('password', $this->password, true);
        $criteria->compare('flag', $this->flag, true);
        $criteria->with = array(
            'FLAG' => array(
                'select' => 'FLAG.flag',
                'together' => true,
            )
        );
        $criteria->compare('FLAG.flag', $this->flagFromB, true);


        return new CActiveDataProvider($this, array(
            'criteria' => $criteria,
            'sort' => array(
                'attributes' => array(
                    'flagFromB' => array(
                        'asc' => 'FLAG.flag',
                        'desc' => 'FLAG.flag DESC',
                    ),
                    '*',
                ),
            ),
        ));
    }

}
?>

我希望它会有所帮助。

于 2017-11-22T07:35:00.717 回答