ActionScript - 仅使用后代访问器和属性遍历 XML?

发布于 2024-11-15 15:22:45 字数 696 浏览 0 评论 0原文

var myXML:XML = <root>
                  <first>
                    <a title = "First Letter">
                        01234
                    </a>
                    <b title = "Second Letter">
                        56789
                    </b>
                 </first>
               </root>

我想遍历上面的 XML 仅搜索一个属性。我不知道 或其子级(),甚至不知道哪个级别包含属性的元素(XML 可能比我的示例更深)。

似乎后代访问器无法根据元素的属性查找元素。例如,我想遍历 XML 并找到具有属性“第二个字母”的元素。

trace(myXML..(@title == "Second Letter"));

难道不能从根开始遍历XML并通过属性定位元素吗?

var myXML:XML = <root>
                  <first>
                    <a title = "First Letter">
                        01234
                    </a>
                    <b title = "Second Letter">
                        56789
                    </b>
                 </first>
               </root>

i would like to traverse the above XML searching only for an attribute. i don't know about <first> or its children (<a> and <b>), or even which level the element containing the attribute (the XML can be much deeper than my example).

it seems that the descendent accessor does not work with finding elements based on their attribute. for example, i want to traverse the XML and find the element with the attribute "Second Letter".

trace(myXML..(@title == "Second Letter"));

is it not possible to traverse an XML from the root and locate an element by an attribute?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

信愁 2024-11-22 15:22:45

Search for any node that have an attribute title, here you can't use e4x @title notation because not all node have an attribute title so you will get a compile time error :

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