Actionscript 2.0 XML 按名称获取子项
现在我正在将一些 AS3.0 应用程序移植到 AS2.0(不要问我为什么:)) 在 AS3.0 中,我以简单的方式获取 xml 中名为“x”的子节点:
xml.child(“x”)。
如何在 AS2.0 中获取“x”节点? 当然,我可以编写一个循环来枚举 xml 的子级并将它们的名称与“x”进行比较。 但我希望有一个更简单的方法......
Now I'm porting some AS3.0 app to AS2.0 (don't ask me why :))
In AS3.0 I get child named "x" of my xml in a simple manner :
xml.child("x").
How can I get "x" node in AS2.0?
Of course, I can write a loop that enumerates children of xml and compares their names to "x".
But I hope there exists a simpler way...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是 100% 确定,但使用 XPath API 应该更容易(PDF链接)在as2中而不是默认的节点循环。应该还有一些被遗忘的资源 在网络上。
Not 100% sure, but it should be easier to use the XPath API(PDF link) in as2 instead of the default node looping. There should still be some forgotten resources out there on the web.
解析另存为 XML 2003 的 Excel 文件
(另存为xml后,用记事本打开并删除前两行)
Parsing Excel file saved as XML 2003
(after saving as xml, open in notepad and delete first two rows)