使用 SharedObject 存储的对象有自己的默认属性吗?可以去掉吗?
我有一个对象,其中包含我定义的一些数据,我使用 SharedObject 将其存储在计算机中。当我使用 FlashDevelop SharedObject Reader 查看 .sol 文件时,我注意到对象信息中有一些不是我定义的数据。其中包括:
soundTransform(对象)、buttonMode、hitArea、useHandCursor、tabChildren、mouseChildren、needSoftKeyboard、focusRect 等
这些数据是否可删除,以便我可以减小 .sol 文件的大小?
I have a Object with some data define by me, and I use SharedObject to store it in the computer. When I view the .sol file with FlashDevelop SharedObject Reader, I notice the object info have some data which is not defined by me. Among them are:
soundTransform (object), buttonMode, hitArea, useHandCursor, tabChildren, mouseChildren, needSoftKeyboard,focusRect etc.
Are these data removable so that I could maybe possibly reduce the size of the .sol file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好创建您自己保存的对象,然后在加载时根据这些属性重建对象。例如;
Might be best to create your own object that you save, and then reconstruct the object from those properties when loading. Eg;