gpt4 book ai didi

apache-flex - Flex 3 中的 XML 和 XMLList 和 XMLListCollection

转载 作者:行者123 更新时间:2023-12-04 16:48:59 25 4
gpt4 key购买 nike

请解释一下 XML 与 XMLList 和 XMLListCollection 之间的区别。如果可能的话,用简单的话举例。提前致谢。

最佳答案

首先,链接到 Flex 3 语言引用 - 必须有书签才能查找这些内容。

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/index.html

XML

XMLList

XMLListCollection

其次,我会说检查 Examples XMLList 的链接,因为它提供了一个很好的 XML 和 XMLList 差异之间的工作示例。

当您想要创建具有 XML 文档值的变量时,请使用 XML。

var mybooks:XML = <books>
<book>
<title>Book1</title>
</book>
<book>
<title>Book2</title>
</book>
</books>;

使用 XMLList 从 XML 变量创建数据子集。
var mybookTitles:XMLList = mybooks.title;  

最后,XMLListCollection 类基本上是一个辅助类,用于获取 XML 或 XMLList 对象并在控件中使用它。

mx.core.Repeater 中获取此片段关于其 dataProvider 的文档属性(property)
If you set it to an XML or XMLList, it is converted into an XMLListCollection.

希望这可以帮助

关于apache-flex - Flex 3 中的 XML 和 XMLList 和 XMLListCollection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6386312/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com