$this->widget('zii.widgets.CListView', array(
'dataProvider' => $dataProvider,
'viewData'=> array('hello'=> $loop),
'itemView' => '_projectView',
'template' => '{items} {pager}',
));
我想将一个值传递给我的_projectView页面,每个循环意味着第一行它将是1第二个,第二个是第3个,所以
答案 0 :(得分:1)
每个项目$index
都有一个名为CLIstView
的变量:
$index - the zero-based index of the item being rendered (0, 1, 2, ...)
可以在视图中直接访问,例如:echo $index
请注意它是基于零的,所以在你的第一个视图中它的值为0,在你的第二个视图中它的值为1等。