如何将 Zend_Navigator 分配给视图?
我尝试使用 Zend_Registry 但它没有输出任何内容 然后我在默认模块引导程序中尝试了此操作
public function _initNavigation()
{
$this->bootstrap('layout');
$layout = $this->getResource('layout');
$view = $layout->getView();
,但它显示'找不到匹配“布局”的资源'
。由于我有两个模块,并且我已经在管理模块中使用 Zend_Navigation,所以我不知道如何克服这个问题
I tried using Zend_Registry but it doesn't output anything
then I tried this in my default module bootstrap
public function _initNavigation()
{
$this->bootstrap('layout');
$layout = $this->getResource('layout');
$view = $layout->getView();
But it says 'Resource matching "layout" not found'
. Since I have two modules and I'm already using Zend_Navigation in the admin module, I don't know how to get over with this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您首先必须创建布局资源。
我是这样做的:
You first have to create your layout resource.
Here is how i did it:
那应该足够了。
在配置 ini 文件中,您可能有类似以下内容:
That should be enough.
In the config ini file you could have something like: