Zend Framework 2 の開発を始めたばかりです。アプリケーションに簡単なメニューを追加しようとしています。メニューは最終的にユーザー定義可能なブックマークとしてデータベースから読み込まれるため、現時点では、定義したビュー ヘルパーをインスタンス化し、プログラムでコントローラーにページを追加し、ビュー ヘルパーのナビゲーションをビューに挿入しようとしています。モデル。私の問題は、ServiceLocator を使用してコントローラーでビュー ヘルパーを取得しようとすると、次のようになることServiceNotFoundException
です。
Application\View\Helper\ShortcutsMenu:
namespace Application\View\Helper;
use Zend\Navigation\Navigation;
class ShortcutsMenu extends Navigation {
public function shortcutsMenu() {
//...
}
public function __construct() {
//...
}
}
そしてModule.phpで
public function getServiceConfig() {
return array(
'view_helper' => array(
'factories' => array(
'shortcutsmenu' => function($sm) {
$smenu = new \Application\View\Helper\ShortcutsMenu();
return $smenu;
}
),
),
);
IndexController.php:
$smenu = $this->getServiceLocator()->get('shortcutsmenu'); // throws ServiceNotFoundException
//"Zend\ServiceManager\ServiceManager::get was unable to fetch or create an instance for shortcutsmenu"
$smenu->addPage(AbstractPage::factory(array(
'label' => 'Homepage',
'order' => '-1',
'uri' => '/',
)));
// ...
}
何が欠けているのか誰か教えてもらえますか?
編集: アプリケーション全体のレイアウトで生成したい HTML は次のようになります。
<!-- Side tabs shortcuts -->
<ul id="shortcuts">
<li class="current"><a href="./" class="shortcut-home" title="Home">Home</a></li>
<li><a href="userpage1.html" title="My messages">My messages</a></li>
<li><a href="/a/b/c?id=4" title="Bob's calendar">Bob's calendar</a></li>
<li>...</li>
</ul>
おそらく、MVC リンクではなく URI スタイルのリンクを使用しています。