如何在 Zend_Config_Xml 中使用多个条目?

发布于 2024-08-26 06:29:49 字数 692 浏览 9 评论 0原文

我正在尝试将多个条目与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫烠⑼条掵仅有一顆心 2024-09-02 06:29:49

我从未在 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.

—━☆沉默づ 2024-09-02 06:29:49

问题是 XML 无效。您需要关闭访问标签:

<access moudle="module1" controller="controller1" action="action1" />

正如另一个我不记得名字的人所说,您的 moudle 中有一个拼写错误。

The problem is that is not valid XML. You need to close the access tag:

<access moudle="module1" controller="controller1" action="action1" />

And as the other guy who's name I can't remember said, you have a typo in moudle.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文