如何在Yii中使用dataprovider获取连接表的所有列?

时间:2012-06-21 17:55:58

标签: activerecord orm yii

我的控制器

$criteria = new CDbCriteria();
$criteria -> select = 't.*,b.*';
$criteria -> join = 'INNER JOIN tbl_b b on b.b_id = t.id ';
$criteria -> join .= 'INNER JOIN tbl_c c on c.id = b.c_id';
$criteria -> condition = 'c.id = :cid';
$criteria -> params = array(':cid' => 1);
$dataProvider = new CActiveDataProvider('tbl_a',array(
            'criteria' => $criteria
        ));
$this->render('view',array('dataProvider' => $dataProvider));

我的观点

$this->widget('zii.widgets.grid.CGridView', array(
'id' => 'my-grid',
'dataProvider' => $dataProvider,
'columns' => array(
    'name',
    'description',
    array(
        'header' => 'Column from tbl_b',
        'value' => ''
    ),      
        array(
        'class'=>'CButtonColumn',
        'template' => '{view}'
), ),));

我的问题是:如何从tbl_b显示列的值。由于在dataprovider中,我已指定tbl_a,但它仅从tbl_a而非tbl_b提取数据,尽管我已选择tbl_b中的所有记录为好。

据我所知,它应显示为$data -> tbl_b -> col_b。但这是错误,因为tbl_a.tbl_b未定义。 我想知道这是什么问题?

Is it something regarding the relation? tbl_atbl_cMANY_MANYtbl_b相关。即tbl_b有两列链接tbl_atbl_c的主要ID。

注意:名称和描述来自tbl_a,并显示它们。

请建议!

1 个答案:

答案 0 :(得分:6)

我通常为这种事情做的是在ActiveRecord中创建一个属性。

class A extends CActiveRecord {

    public $bAttribute1

}

当我将表格A与表格B结合使用时,我会使用我创建的属性重命名我要显示的B字段(在本例中为bAttribute })

$dataProvider = new CActiveDataProvider('A', array(
    'criteria' => array(
        'select' => array('t.*', 'b.attribute1 AS bAttribute1'),
        'join' => 'JOIN B AS b ON b.joinId = t.id',
    )
));

然后我可以在GridView中显示bAttribute1

$this->widget('zii.widgets.grid.CGridView', array(
    'dataProvider' => $dataProvider,
    'columns' => array(
        'bAttribute1',  
)));

这应该有效。但缺点是,如果要显示连接表中的大量列,则必须创建许多属性。

<强>更新

很奇怪,所以我试图从头开始做例子。我创建了两个表ModelAModelB,如下所示。

CREATE TABLE IF NOT EXISTS `ModelA` (
  `id` int(11) NOT NULL,
  `attribute2` int(11) NOT NULL,
  `attribute3` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE IF NOT EXISTS `ModelB` (
  `id` int(11) NOT NULL,
  `aId` int(11) NOT NULL,
  `attribute3` int(11) NOT NULL,
  `attribute4` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

如您所见,aId中的ModelBModelA的外键。然后我举了一些例子。

INSERT INTO `ModelA` (`id`, `attribute2`, `attribute3`) VALUES
(1, 1, 1),
(2, 2, 2);
INSERT INTO `ModelB` (`id`, `aId`, `attribute3`, `attribute4`) VALUES
(1, 1, 10, 100),
(2, 2, 20, 200),
(3, 1, 30, 300),
(4, 1, 40, 400);

因此,ModelA中的条目#1将被ModelB中的3个条目引用,而条目#2将只有1条。

然后我创建了模型代码。

class ModelA extends CActiveRecord {
    public $bAttribute3;
    public $bAttribute4;
    public static function model($className = __CLASS__) {
            return parent::model($className);
    }
}

请参阅模型中的bAttribute3bAttribute4,我将attribute3attribute4分别放在ModelB表中。然后在控制器中我创建了DataProvider

public function actionIndex(){
    $dataProvider = new CActiveDataProvider('ModelA', array(
        'criteria' => array(
            'select' => array(
                '`t`.*', 
                '`b`.`attribute3` AS `bAttribute3`',
                '`b`.`attribute4` AS `bAttribute4`'
            ),
            'join' => 'JOIN `ModelB` AS `b` ON `b`.`aId` = `t`.`id`',
        )
    ));
    $this->render('index', array(
        'dataProvider' => $dataProvider,
    ));
}

在视图中,我做了这个

$this->widget('zii.widgets.grid.CGridView', array(
    'id' => 'my-grid',
    'dataProvider' => $dataProvider,
    'columns' => array(
        'id',
        'attribute2',
        'attribute3',
        'bAttribute3',
        'bAttribute4',
    ),
));

所以,这就是我所看到的

Imgur

这是你想要的吗?即使对于CActiveDataProvider,我通常也会这样做。我想你的代码可能会遗漏一些东西。