我目前通过 XML 文件使用 zend_navigation。
但是,我需要在控制器中覆盖以前的面包屑作为其动态父级。
这可能吗?在我看来,zend_navigation 是相当静态的,而且 zend 文档一直在超时。
谢谢
我放了:
public function addAction() {
$this->view->navigation()->addPage(array(
'type' => 'uri',
'label' => 'New page')
);
在我的控制器中,但该页面没有显示crumbbar。
有任何想法吗?$this->navigation() 抛出了一个
Method "navigation" does not exist and was not trapped in __call()
另请注意,我的 crumbBar 位于我的布局中,而不是单独的视图中。