AS3:具有多重条件的后代

发布于 2024-11-02 22:03:09 字数 1726 浏览 1 评论 0原文

我的 XML 列表示例:

<listnode>
   <nodeA id="1">
       <nodeB id="1" />
   </nodeA>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
</listnode>

<listnode>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
   <nodeA id="1">
       <nodeB id="3" />
   </nodeA>
   <nodeA id="5">
       <nodeB id="1" />
   </nodeA>
</listnode>

<listnode>
    ... etc

我试图根据多个条件获取 XML 列表。有一个条件,使用类似的东西就可以了:

var  list:XMLList = list.(descendants("nodeA")[email protected]("1"));

这给了我一个列表,其中包含 list 中的所有 listnode ,这些节点具有名为 nodeA 的后代属性 id=1

如何检索相同的列表,同时查找 nodeB 节点的 id ?类似这样的:

var  list:XMLList = list.(descendants("nodeA")[email protected]("1") && nodeA.descendants("nodeB")[email protected]("3"));

在这个例子中,这应该给我一个包含一个节点的列表:

<listnode>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
   <nodeA id="1">
       <nodeB id="3" />
   </nodeA>
   <nodeA id="5">
       <nodeB id="1" />
   </nodeA>
</listnode>

因为它有一个 id=1 的节点 A,它有一个 id=3 的节点 B。

有什么想法吗?

Example of my XML list:

<listnode>
   <nodeA id="1">
       <nodeB id="1" />
   </nodeA>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
</listnode>

<listnode>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
   <nodeA id="1">
       <nodeB id="3" />
   </nodeA>
   <nodeA id="5">
       <nodeB id="1" />
   </nodeA>
</listnode>

<listnode>
    ... etc

I'm trying to get an XML list based on multiple conditions. With one condition, it's fine, using something like:

var  list:XMLList = list.(descendants("nodeA")[email protected]("1"));

This gives me a list of all the listnode in list that have any descendant named nodeA with an attribute id=1.

How can I retrieve the same list, but looking also for the id of the nodeB nodes? Something like:

var  list:XMLList = list.(descendants("nodeA")[email protected]("1") && nodeA.descendants("nodeB")[email protected]("3"));

In this example, that should give me a list with one node:

<listnode>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
   <nodeA id="1">
       <nodeB id="3" />
   </nodeA>
   <nodeA id="5">
       <nodeB id="1" />
   </nodeA>
</listnode>

Because it has a nodeA with id=1 who has a nodeB with id=3.

Any ideas?

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

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

发布评论

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

评论(2

哆啦不做梦 2024-11-09 22:03:09

已更新

list.(descendants("nodeA").(@id.contains("1") && descendants("nodeB")[email protected]("3")).length() > 0)

这怎么样?

UPDATED

list.(descendants("nodeA").(@id.contains("1") && descendants("nodeB")[email protected]("3")).length() > 0)

What about this?

娇俏 2024-11-09 22:03:09

是的,条件可以组合。

var list:XML = <list>
<listnode>
   <nodeA id="1">
       <nodeB id="1" />
   </nodeA>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
</listnode>

<listnode>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
   <nodeA id="1">
       <nodeB id="3" />
   </nodeA>
   <nodeA id="5">
       <nodeB id="1" />
   </nodeA>
</listnode>
</list>;
var result:XMLList = list.listnode.descendants("*").(@id=="1" && children().length() > 0); 

Yes, conditions can be combined.

var list:XML = <list>
<listnode>
   <nodeA id="1">
       <nodeB id="1" />
   </nodeA>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
</listnode>

<listnode>
   <nodeA id="2">
       <nodeB id="2" />
   </nodeA>
   <nodeA id="1">
       <nodeB id="3" />
   </nodeA>
   <nodeA id="5">
       <nodeB id="1" />
   </nodeA>
</listnode>
</list>;
var result:XMLList = list.listnode.descendants("*").(@id=="1" && children().length() > 0); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文