Zend_Navigation菜单有效但不是面包屑

时间:2011-01-30 02:40:57

标签: zend-framework zend-navigation

我配置了我的zend导航菜单,如

配置:http://pastebin.com/B212uWKz

public function _initNavigation() {
  $config = new Zend_Config_Xml(APPLICATION_PATH . '/configs/navigation.xml', 'nav');
  $navigation = new Zend_Navigation($config);

  $this->bootstrap('view');
  $view = $this->getResource('view');
  $view->navigation($navigation);
}

布局

<!DOCTYPE HTML>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title>Zend Navigation Test</title>
</head>
<body>
  <?php echo $this->navigation()->menu(); ?>
  <hr />
    <?php echo $this->navigation()->breadcrumbs(); ?>
  <hr />
  <?php echo $this->layout()->content; ?>
</body>
</html>

菜单有效,但不是面包。我也试过here

<?php echo $this->navigation()->breadcrumbs()
                              ->setLinkLast(false)
                              ->setMinDepth(0)
                              ->render(); ?>

仍然只有菜单

2 个答案:

答案 0 :(得分:1)

也许他们使用不同的容器?
也许最大深度?

<?php echo $this->navigation()->breadcrumbs()
                   ->setLinkLast(false)
                   ->setMinDepth(0)
                   ->setMaxDepth(500)
                   ->render($this->navigation()->getContainer()); ?>

答案 1 :(得分:0)

查看您的代码我认为问题可能是因为您使用 uri 标记而不是 controller action 标记。例如,而不是:

    <home>
        <label>Home</label>
        <uri>/</uri>
    </home>

应该有:

    <home>            
        <label>Home</label>
        <controller>index</controller>
        <action>index</action>
    </home>

希望它对你有用。