(Flex 3) 如何使用 HTTPservice 从 xml 文件获取数据并将返回数据保存为数组?
我有一个类似于以下内容的 xml 文件(外部保存):
[root]
[主要]
[标题]...[/标题]
[内容]...[/内容]
[/main]
[主要]
[标题]...[/标题]
[内容]...[/内容]
[/main]
[/root]
*全部<>被替换为[]。
我喜欢做的是使用 HTTPservice 获取 [title] 标签中的内容,将其导入 Flex,并将其保存为数组对象,并对 [content] 执行相同的操作。这样我以后就可以引用标题[0]或内容[2]的数组对象。
我对 Flex 很陌生,所以非常感谢您的完整示例。
幸运武士
I have an xml file (externally saved) that is similar to the following:
[root]
[main]
[title]...[/title]
[content]...[/content]
[/main]
[main]
[title]...[/title]
[content]...[/content]
[/main]
[/root]
*All <> is replaced with [].
What I like to do is to get what's in [title] tag using HTTPservice, import it into Flex, and save it as array objects, and do the same thing for [content]. This way I can later refer the array object saying title[0] or content[2].
I'm really new to Flex so your complete example is really appreciated.
LuckySamurai
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
flex 使用 httpService 和结果事件
as3
flex using httpService with result event
as3