在 flex/actionscript 中存储名称-值对
关于这个问题,
我能够获取
、
等 XML 标记的名称和值对。
但我无法将它们作为名称-值对存储在 Array/ArrayCollection 中, 即
id - ""
width - 10
height - 10
name - Person1
我想稍后在我的应用程序中使用它们。怎么办呢?
In reference to this question,
I am able to get the name and value pairs of the <id>
,<width>
etc XML tags.
But I am not able to store them as a name-value pair in Array/ArrayCollection,
i.e
id - ""
width - 10
height - 10
name - Person1
I want to use them later in my application. How to do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AS 中键值对的基本实现是 Object 或 字典。
A basic implementation of key-value pairs in AS is Object or Dictionary.