这是设置面包屑但可以用于我假设的任何助手。我正在尝试链接到我在面包屑中查看的当前文章但不确定如何在视图/ URL之后添加帖子ID,就像我之前使用新闻标题一样?
$this->Html->addCrumb($news['News']['title'], array('controller' => 'news', 'action' => 'view/'$news['News']['id']));
答案 0 :(得分:2)
我通常更喜欢CakePHP格式:)
$this->Html->addCrumb(
$news['News']['title'], array(
'controller' => 'news',
'action' => 'view',
$news['News']['id']
)
);
答案 1 :(得分:1)
你的意思是:
$this->Html->addCrumb(
$news['News']['title'], array(
'controller' => 'news',
'action' => 'view/' . $news['News']['id']
)
);