如何在 Zend_Config_Xml 中使用多个条目?
我正在尝试将多个条目与 Zend_Config_XML 一起使用,但到目前为止还没有运气。我有以下结构。
<acl>
<admin>
<access moudle="module1" controller="controller1" action="action1">
<access moudle="module2" controller="controller2" action="action2">
<access moudle="module3" controller="controller3" action="action3">
</admin>
<manager>
<access moudle="module1" controller="controller1" action="action1">
<access moudle="module2" controller="controller2" action="action2">
<access moudle="module3" controller="controller3" action="action3">
</manager>
</acl>
我什至无法访问访问条目。
我应该使用其他 XML 类来使用多个条目吗?
I am trying to use multiple entries with Zend_Config_XML, but no luck so far. I have the following structure.
<acl>
<admin>
<access moudle="module1" controller="controller1" action="action1">
<access moudle="module2" controller="controller2" action="action2">
<access moudle="module3" controller="controller3" action="action3">
</admin>
<manager>
<access moudle="module1" controller="controller1" action="action1">
<access moudle="module2" controller="controller2" action="action2">
<access moudle="module3" controller="controller3" action="action3">
</manager>
</acl>
I can't even access to access entries.
Should I use other XML classes to use multiple entries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我从未在 ZF 中使用过 XML 配置,但看起来您的 XML 中有一个拼写错误 - 属性名称应该是 module,而不是 moudle。
I've never used XML configs with ZF but it looks like you have a typo in your XML - the attribute name should be module, not moudle.
问题是 XML 无效。您需要关闭访问标签:
正如另一个我不记得名字的人所说,您的 moudle 中有一个拼写错误。
The problem is that is not valid XML. You need to close the access tag:
And as the other guy who's name I can't remember said, you have a typo in moudle.