在Yii我正在做多模型。我的数据库是这样的
+++++ Group ++++++
id
name
+++++ Member ++++++
id
group_id
firstname
lastname
membersince
在Group控制器中我想显示Member的属性。一切正常但是当我从菜单中使用manage选项时它会显示两个模型的属性但是在两个不同的grid-view中。我想显示两个模型属性在单个网格视图中。 Member控制器的代码就像这样
public function actionAdmin()
{
$model=new Group('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Group']))
{
$model->attributes=$_GET['Group'];
}
$member=new Member('search');
$member->unsetAttributes(); // clear any default values
if(isset($_GET['Member']))
{
$model->attributes=$_GET['Member'];
}
$this->render('admin',array(
'model'=>$model,
'member'=>$member,
));
}
for View in Group管理代码就像这样
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'member-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'id',
'name',
array(
'class'=>'CButtonColumn',
),
),
));
$this->widget('zii.widgets.grid.CGridView', array(
'id'=>'member-grid',
'dataProvider'=>$member->search(),
'filter'=>$member,
'columns'=>array(
'firstname',
'lastname',
array(
'class'=>'CButtonColumn',
),
),
));
这里我使用CGridView两次来显示两个属性的模型。那么有人可以告诉我如何在一个单独的模型中显示模型 CGridView.Any帮助和建议将非常适合。 的 [更新] 模型中的关系: 小组模型
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'member' => array(self::HAS_MANY, 'Member', 'group_id'),
);
}
会员模特:
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'group' => array(self::BELONGS_TO, 'Group', 'group_id'),
);
}
答案 0 :(得分:8)
在yii中访问相关模型字段的一种简单方法是使用类似的东西
$model->relatedModel->field
- 如果模型之间存在 has_one 或 belongs_to 关系,则可以使用此选项。
所以在您的情况下,您可以访问使用代码
的成员的组名
$memberModel->group->name
但是当您需要访问 has_many 或 many_many 关系类型的相关模型字段时,您需要执行类似的操作
$model->relatedModel[arrayIndex]->field
这是因为在这种情况下有许多相关模型,yii会自动为您提供数组中的相关模型
在您的情况下,组有许多成员并且可以访问您可以使用$groupModel->members[0]->firstname
的组的特定成员(比如第一个成员,即 arrayIndex = 0 )
现在回答您的确切问题,首先,您不需要声明或初始化或传递$ member模型。所以你的控制器动作可以是
public function actionAdmin(){
$model=new Group('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Group'])){
$model->attributes=$_GET['Group'];
}
$this->render('admin',array(
'model'=>$model
)
);
}
然后显然在您的视图中,您不需要两个网格视图
<?php
$this->widget('zii.widgets.grid.CGridView', array(
'id'=>'member-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'id',
'name',
array( // this is for your related group members of the current group
'name'=>'members.firstname', // this will access the attributeLabel from the member model class, and assign it to your column header
'value'=>'$data->members[0]->firstname', // this will access the current group's 1st member and give out the firstname of that member
'type'=>'raw' // this tells that the value type is raw and no formatting is to be applied to it
),
array(
'class'=>'CButtonColumn',
),
),
));
希望这有帮助。
答案 1 :(得分:1)
我有类似的问题,我已经解决了这个问题。在这里你可以找到答案
Yii framework: Using data from related Active Record models for searching