Flex 序列化自定义类 解决 sharedObject 保存自定义对象
生活随笔
收集整理的這篇文章主要介紹了
Flex 序列化自定义类 解决 sharedObject 保存自定义对象
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
問題
我想把自定義類實例存儲到LSO
解決辦法
使用flash.net.registerClassAlias( )方法保留類型信息并把類實例添加到共享對象的data屬性上。
討論
LSOs 使用特殊的二進制格式,Action Message Format (AMF),當要在LSO中存儲類實例時,實例會被編碼為包含屬性的普通的object。這樣當重新從共享對象中讀取實例時,已經不是原來的類實例了,因為已不能根據類型信息解碼回來。
flash.net包中的registerClassAlias( )方法就是為解決這個問題的,這個方法的使用是很簡單的,在AS1.0和AS2.0中寫法是Object.registerClass( ),但是在AS3.0里已經被刪除了,取而代之的是flash.net.registerClassAlias( )。
registerClassAlias( )方法需要兩個參數,第一個參數表示類的別名,可以用任意字符串表示別名,比如modal包中有個Person類,別名可以是modal.Person,第二個參數類引用。
-ActionScript registerClassAlias(?"somePackage.ExampleClass",?ExampleClass?);這個代碼的作用是把這個類的信息存進LSO,當讀取數據時,Flash 播放器就知道這個object到底是什么類。
下面的例子完整實現了類實例的保存,首先創建自定義類:
-ActionScript //?Create?a?Person class?in?the?model?package
package?model?{
public?class?Person?{
private?var?_firstName:String;
private?var?_age:int;
public?function?Person(firstName:String,?age:int)?{
_firstName?=?firstName;
_age?=?age;
}
public?function?toString(?):String?{
return?_firstName?+?"?is?"?+?_age?+?"?years?old";
}
}
}
接著,編寫主類讀取和寫入數據
-ActionScript package?{
import?flash.net.registerClassAlias;
import?flash.net.SharedObject;
import?model.Person;
public?class?Example?{
public?function?Example(?)?{
//?Map?"model.Person"?to?the?Person class
registerClassAlias(?"model.Person",?Person?);
//?Create?a?shared?object?and?store?a?Person?instance?in?it
var?example:SharedObject?=?SharedObject.getLocal(?"example"?);
//?Test?to?see?if?the?person?instance?has?been?saved?already
if?(?example.data.person?==?undefined?)?{
trace(?"first?time,?saving?person?instance"?);
var?person:Person?=?new?Person("Darron",?24);
//?Write?the class?instance?to?the?local?shared?object
example.data.person?=?person;
}?else?{
trace(?"person?instance?already?saved,?using?stored?values"?);
}
/*?Every?time?this?code?is?executed,?the?following?is?displayed:
Darron?is?24?years?old
*/
trace(?example.data.person.toString(?)?);
}
這里需要注意的是registerClassAlias( )必須在SharedObject.getLocal( )方法之前調用才有效。否則的話共享對象會把Person解釋為普通的object類型進行存儲。
轉載于:https://www.cnblogs.com/bmate/archive/2011/06/20/2084915.html
總結
以上是生活随笔為你收集整理的Flex 序列化自定义类 解决 sharedObject 保存自定义对象的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 在win10系统上使用HiTool工具网
- 下一篇: [译] ASP.NET 生命周期 – A