Flex4 查找所选 XML 项目的名称

发布于 2024-10-16 13:01:10 字数 396 浏览 5 评论 0原文

我在 Flex4 中有一个 XML 对象,它正在填充一棵树(除其他外)。

当在树中单击所选项目时,我需要能够找到该项目的名称。

例如:

<Object id="">
<Image></Image>
<Cycle></Cycle>
</Object>
<Action>
<Hide></Hide>
</Action>

标签都是我预先定义的,所以我会知道它们是什么,但我需要能够知道用户选择的项目是否是“对象”并执行某些操作,或者如果他们选择“操作”执行某些操作别的。

在 flex4 中获取这些名称并进行比较的语法是什么?

谢谢

I have an XML object in Flex4 that is populating a tree (amongst other things).

I need to be able to find the name of the selected item when it is clicked in the tree.

For example:

<Object id="">
<Image></Image>
<Cycle></Cycle>
</Object>
<Action>
<Hide></Hide>
</Action>

The tags are all predefnied by me so I will know what they are, but I need to be able to know if the item a user has selected is "Object" and do something, or if they select "Action" do something else.

What is the syntax to get the names of these in flex4 and compare them?

Thanks

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

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

发布评论

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

评论(1

傻比既视感 2024-10-23 13:01:10

如果您有对 XML 节点的引用,则可以调用 name() 方法:

var xml:XML = <data><myNode/></data>;
trace(xml.child(0).name()); //traces "myNode"

If you have a reference to the XML node, you can call the name() method:

var xml:XML = <data><myNode/></data>;
trace(xml.child(0).name()); //traces "myNode"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文