如何在flex共享本地对象中存储多个对象?
我有一个项目,客户端可以将数据从 Flex 应用程序保存到 xml 中的客户端,例如
<项目 id='1111'>
<数据.../>
<数据.../>
这存储在 Flex SharedLocalObject 上,但如果客户端创建新项目,它将覆盖现有项目。 如何在共享本地对象中存储多个项目?
I have a project where the client can save data from a flex app to their client in xml , something like
<xml>
<project id='1111'>
<data ... />
<data ... />
</project>
</xml>
this is stored on the flex sharedlocalobject , but if the client creates a new project it overwrites the existing project. How can i store multiple projects in the sharedlocalobject?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
共享对象的
data
属性可以存储任意数量的值,如下所示:因此,在您的情况下,您可以简单地将每个项目 XML 存储在数据对象的单独“属性”中。
The
data
attribute of a shared object can store arbitrary number of values like this:So in your case, you could simply store each project XML in a separate "attribute" of the data object.