创建包含多个节点集的 XMLList

发布于 2024-08-14 05:11:05 字数 487 浏览 10 评论 0 原文

我已经在互联网上搜索试图找到这个问题的答案......我一定问错了问题?!

<a>
  <b>
    <c/>
    <c/>
  </b>
  <a>
    <b>
      <c/>
    </b>
  </a>
</a>
var x:XMLList = node.a | node.b.c; <-- compiler error
var x:XMLList = node.a || node.b.c; <-- nothing and probably not correct syntax

我想要一个| b/c 节点返回即我想要一个包含 a 和 c 但没有 b 的 XMLList...

我正在 xml 上进行数据绑定,因此不想创建新的根并分两步添加子项。

非常欢迎任何想法!

刘易斯

I have scoured the internet trying to find an answer to this...I must be asking the wrong question?!

<a>
  <b>
    <c/>
    <c/>
  </b>
  <a>
    <b>
      <c/>
    </b>
  </a>
</a>
var x:XMLList = node.a | node.b.c; <-- compiler error
var x:XMLList = node.a || node.b.c; <-- nothing and probably not correct syntax

I want a | b/c nodes returning i.e. I want an XMLList containing a's and c's but without the b's...

I am doing databinding on the xml so don't want to create a new root and add the children in two steps.

Any ideas VERY welcome!

Lewis

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

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

发布评论

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

评论(1

花桑 2024-08-21 05:11:05

您可能需要创建新的 xmllist ,条件是忽略节点 b

希望它能给您一个想法

You might need to create new xmllist with the condition that will disregard node b

hope it gives you an idea

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