我有一个名为 Service 的简单模型,带有属性(ServiceId, name, description, Image) ,我想使用 CListview 在视图中显示所有记录,但只有名称和描述属性,而不是全部。
我能够显示模型,但我找不到隐藏 id 和 image 属性的解决方案。
有人可以给出解决方案吗?
提前致谢。
这是我的代码:
控制器 :
public function actionIndex()
{
$model = new Service();
$this->render('index',array(
'model'=>$model,
));
}
和我的观点:
<h1>Services</h1>
<?php
$this->widget('zii.widgets.CListView', array(
'dataProvider'=>$model->search(),
'itemView'=>'_view',
));
?>