0

$partial = array( DIR .'/menu.phtml', 'default');を実行しようとしています。

  echo $this->navigation()->menu()->setPartial($partial);`

そして、エラーが発生していますFatal error: Zend\View\Exception\RuntimeException: Zend\View\Renderer\PhpRenderer::render: Unable to render template "/home/cawa/www/zf2/module/Nav/view/layout/menu.phtml"; resolver could not resolve to a file in /home/cawa/www/zf2/vendor/zendframework/zendframework/library/Zend/View/Helper/Navigation/AbstractHelper.php on line 471

何が問題ですか?

4

2 に答える 2

0

メニューの命名についても注意してください。「ナビゲーション」キーワードが存在しない場合、パーシャルのコンテナーは空でした。

<?= $this->navigation()->menu('navigation')->setPartial(array('partials/menu.phtml', 'default'))->render() ?>
于 2013-01-15T13:54:09.677 に答える
-1

http://www.zfforum.de/einsteigerfragen/4749-zend_navigation-aktiver-eintrag-im-partial.html

于 2012-09-28T12:40:34.203 に答える