2

我的控制器

$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_a并且通过tbl_c相关。ie有两列链接 和 的主要id 。MANY_MANYtbl_btbl_btbl_atbl_c

注意:名称和描述来自 tbl_a 并显示出来。

请建议!

4

1 回答 1

7

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

class A extends CActiveRecord {

    public $bAttribute1

}

当我A用 table加入 table 时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',
    )
));

然后我可以bAttribute1在 GridView 中显示,

$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;

如您所见,aIdinModelBModelA. 然后我举了一些例子。

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);

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

然后我创建了模型代码。

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

查看模型中的bAttribute3and bAttribute4,我分别将表attribute3attribute4from放在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',
    ),
));

所以,这就是我所看到的

伊姆古尔

是你想要的吗?即使对于 CActiveDataProvider,我通常也这样做。我认为您可能会错过代码中的某些内容。

于 2012-06-21T22:25:47.110 回答