这是我的类别表
id category parent_category_id
1 animal NULL
2 vegetable NULL
3 mineral NULL
4 doggie 1
5 potato 2
6 hunting 4
我的yii网格视图显示父类别ID而不是名称。 如何在网格视图中显示父类别名称。
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'category-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'id',
'category',
'parent_category_id',
array(
'class'=>'CButtonColumn',
),
),
)); ?>
我必须在上面的代码中做出哪些更改。 感谢。
答案 0 :(得分:1)
第一步 - 在模型类中定义关系:
public function relations()
{
return array(
'parent'=>array(self::BELONGS_TO, 'Category', 'parent_category_id'),
);
}
其中Category
- 是AR模型类的名称,parent_category_id
- 引用自身的外键。
第2步 - CGridView,columns
属性:
...
'columns'=>array(
'id',
'category',
array(
'name'=>'Parent category', // col title
'value'=>function (Category $data){
if($data->parent_category_id)
return $data->parent->category; // "parent" - relation name, defined in "relations" method
return "-= root category =-";
}
),
)
...
注意:上面的代码需要php版本&gt; = 5.3。否则你必须避免使用匿名函数
答案 1 :(得分:0)
'columns'=>array(
.....
array('name'=>'id','value'=>'$data->Category->name'),
)
或在调用中创建函数获取类别名称()并检索名称
'columns'=>array(
.....
array('name'=>'id','value'=>'$data->getCategoryName()'),
)
public function getCategoryName()
{
$equery= Category::model()->find("id=$this->id");
$cnm=$equery['Category'];
return $cnm;
}