我想使用带变量的breadcrumb。
我首先查找类别(调用视图时传递)
$label = Category::model()->findByPk($category_id); // I get the category record for a given category_id (in this case, movies)
然后我用以下代码显示面包屑
$this->breadcrumbs=array(
$label->name => array('index','category_id='.$label->id),
'Create',
);
作为显示的观点是正确的,它显示
Home » Movies » Create
但是当我点击电影时,网址是
localhost/post/index.php/index?0=category_id=1
而不是
localhost/post/index.php/index?category_id=1
0 =来自哪里?
谢谢你的帮助
答案 0 :(得分:0)
试试这个
$label->name => array('index','category_id'=>$label->id),