在 Flex 应用程序中使用外部 xml 数据,而不将源代码编译到应用程序中
我想从文件系统上的 xml 文件将 xml 数据读取到 mxml 应用程序。我找到的示例是 AIR,< a href="http://livedocs.adobe.com/flex/3/html/help.html?content=13_Working_with_XML_11.html" rel="nofollow">链接2,link3。但我想以 Flash Player 运行时为目标。 如果我使用 标签,我可以做到这一点;但是 xml 会编译到我的 swf 中。如何在我的发布版本中保留 xml 文件?
I want to read xml data to a mxml application from a xml file on my filesystem. The example I found was for AIR,link2, link3. But I want to target the Flash Player runtime.
If I use the the tag, I can do it; however the xml compiles into my swf. How can I retain the xml file in my release build?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 UrlLoader 在运行时加载外部 xml。您可能需要延迟加载应用程序组件,直到加载 xml(取决于应用程序的详细信息)。
You can use UrlLoader to load the external xml at runtime. You may need to delay the loading of your app components until the xml has been loaded (depending on the details of your application.)
您需要使用 mx:HTTPService 标记 ,如中所引用您提供的链接
You need to use the mx:HTTPService tag , as referenced in the link you've provided