模块中的 Zend Framework menu.xml 抛出异常
通常我在 Zend_Navigation 的 configs 文件夹中有一个导航文件 menu.xml。
现在,当我将其放入 module/module-name/configs/ 中时,出现错误:
在 /blah/blah/blah/menu.xml 中找不到“生产”部分。
我知道 [生产] 是配置 ini 文件的部分,我是否也需要在 xml 中使用它?我是否遗漏了一些非常明显的东西?我怎样才能在模块目录中拥有导航 xml 文件(以保持模块独立)?
Usually I have a navigation file menu.xml in configs folder for Zend_Navigation.
Now when I put it in modules/module-name/configs/ I get the error:
Section 'production' cannot be found in /blah/blah/blah/menu.xml.
I understand [production] is the section for config ini files, do I need it in xml as well? Am I missing something really obvious? How could I have navigation xml files in the module directory (to keep modules independent)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,这就是我必须做的才能使其发挥作用。一切都基于试验/错误,我不知道底层机制为什么它必须是这种方式而不是“正常”方式(就像它在没有模块的情况下工作一样)。
该文件必须有一个生产节点,并且它必须用于模块 Bootstrap.php 中 Zend_Navigation 的配置:
XML 文件:
我不知道为什么它必须是这样的(或者是否可以有任何其他方式)所以如果您知道的话,如果您在评论中告诉我,我将不胜感激;)
OK this is what I had to do to make it work. Everything based just on trial/error, I don't know underlying mechanisms why it had to be this way and not the "normal" way (like it works without modules).
The file must have a production node, and it must be used for config for Zend_Navigation in module's Bootstrap.php:
XML file:
I have no idea why it has to be that way (or is it possible to have it any other way) so I'd appreciate if you tell it in comments, if you know it ;)