0

Zend_Navigation を実装しようとしています – このチュートリアルでメニューとブレッドクラムを作成します

ブートストラップファイルでは、

...
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap {

    protected $_config;
    protected $_layout;

    protected function _initConfig() {
        $this->_config = new Zend_Config_Ini(APPLICATION_PATH . '/configs/application.ini'); 
        Zend_Registry::set("config", $this->_config);
        if ($this->_config->debug) {
            error_reporting(E_ALL | E_STRICT);
            ini_set('display_errors', 'on');
        }
        $request = new Zend_Controller_Request_Http();
        $uri = $request->getRequestUri(); 
        if (preg_match("/admin/", $uri)) {
            //echo $this->_config->layout->admin->layout; exit;
            $this->_layout = Zend_Layout::startMvc(
                            array(
                                'layoutPath' => $this->_config->layout->layoutPath,
                                'layout' => $this->_config->layout->admin->layout
                            )
            );
        } else { 
            $this->_layout = Zend_Layout::startMvc(
                            array(
                                'layoutPath' => $this->_config->layout->layoutPath,
                                'layout' => $this->_config->layout->layout)
            );
            //echo $this->_view = $this->_layout->getView(); exit;
        }
    }
    /**
     * used for handling top-level navigation
     * @return Zend_Navigation
      */
    protected function _initNavigation()
    {
            $view = $this->_layout->getView();   
           /*
            $this->bootstrap('layout');
            $layout = $this->getResource('layout');
            $view = $layout->getView();
            */
            $config = new Zend_Config_Xml(APPLICATION_PATH . '/configs/navigation.xml','nav');

            $container = new Zend_Navigation($config);

            $view->navigation($container);
    }   
...

また、以下はapplication/configフォルダーの下のnavigation.xmlです

<?xml version="1.0" encoding="UTF-8"?>
<configdata>
    <nav>
        <home>
            <label>Home</label>
            <uri>/</uri>

            <pages>
                <index>
                    <label>Home</label>
                    <uri>/index/index</uri>     
                </index>
                <index>
                    <label>Product</label>
                    <uri>/index/product</uri>       
                </index>

            </pages>        
        </home>
    </nav>
</configdata>

レイアウトファイル内

...
            <div class="breadcrumbs">
            <?= $this->navigation()->breadcrumbs()->setMinDepth(0)->setLinkLast(true)->setSeparator(" : "); ?>
        </div>
...

サイトを実行すると、次のエラーが発生しました。

致命的なエラー: C:\xampp\htdocs\enit\library\Zend\Navigation\Page.php:235 でメッセージ「無効な引数: インスタンス化するクラスを決定できません」を含む例外「Zend_Navigation_Exception」がキャッチされません: スタック トレース: #0 C:\ xampp\htdocs\enit\library\Zend\Navigation\Container.php(117): Zend_Navigation_Page::factory(Array) #1 C:\xampp\htdocs\enit\library\Zend\Navigation\Container.php(164): Zend_Navigation_Container->addPage(Array) #2 C:\xampp\htdocs\enit\library\Zend\Navigation\Container.php(179): Zend_Navigation_Container->addPages(Array) #3 C:\xampp\htdocs\enit\library \Zend\Navigation\Page.php(852): Zend_Navigation_Container->setPages(Array) #4 C:\xampp\htdocs\enit\library\Zend\Navigation\Page.php(295): Zend_Navigation_Page->set('pages '、配列) #5 C:\xampp\htdocs\enit\library\Zend\Navigation\Page.php(250): Zend_Navigation_Page->setOptions(Array) #6 C:\xampp\htdocs\enit\library\Zend\Navigation\Page.php(232) : Zend_Navigation_Page->__construct(Array) #7 C:\xampp\htdocs\enit\library\Zend\Navigation\Container.php(117): Zend_Navigation_P in C:\xampp\htdocs\enit\library\Zend\Navigation\Page .php 235 行目

私はスタックオーバーフローとグーグルでいくつかの解決策を検索しましたが、それを見つけることができませんでした.これで何が間違っていましたか? 親切にアドバイス

4

1 に答える 1

1

私はあなたのコードを実行しました。バグは設定にあります。同じ名前の兄弟が 2 人いて、Zend_Config_Xml はそれをこの形式にマージします。

array
  'label' => string 'Home' (length=4)
  'uri' => string '/' (length=1)
  'pages' => 
    array
      'index' => 
        array
          0 => 
            array
              'label' => string 'Home' (length=4)
              'uri' => string '/index/index' (length=12)
          1 => 
            array
              'label' => string 'Product' (length=7)
              'uri' => string '/index/product' (length=14)

Zend_Mvc_Page の 235 行目を見ると、例外がスローされる理由がわかります。

        $hasUri = isset($options['uri']);
        $hasMvc = isset($options['action']) || isset($options['controller']) ||
                  isset($options['module']) || isset($options['route']);

        if ($hasMvc) {
            require_once 'Zend/Navigation/Page/Mvc.php';
            return new Zend_Navigation_Page_Mvc($options);
        } elseif ($hasUri) {
            require_once 'Zend/Navigation/Page/Uri.php';
            return new Zend_Navigation_Page_Uri($options);
        } else {
            require_once 'Zend/Navigation/Exception.php';
            throw new Zend_Navigation_Exception(
                'Invalid argument: Unable to determine class to instantiate');
        }

したがって、最終的な解決策は、2 番目の兄弟の名前を変更することです。

于 2012-05-07T12:57:22.700 に答える