直接在actionscript中获取叶节点
在复杂的 XML 中,我不知道叶节点名称/或它们的深度级别,如何直接提取 XMLList 变量内的所有叶节点?
谢谢。
in a complex XML where I dont know the leaf node names/or the level of depth they are, how could I extract all the leaf nodes inside a XMLList variable directly?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于到目前为止还没有人回复,我假设使用 ECMA 来实现通用 XML 并不容易……这使得 UDF 成为唯一的选择(该函数将递归地继续检查是否还有任何子级 -如果不是,那么它是一片叶子)。
谢谢你们。
Since no one has replied so far, I am assuming that there is no easy using ECMA to achieve this for a generic XML... and that leaves UDF as the only choice (the function would recursively keep checking if there are any childs left - if not then its a leaf).
Thanks Guys.