Hello I was wondering if it is possible to cast my JSON string as a custom object?
basically :
var customObject:CustomObject = JSON.decode(evt.result as String) as CustomObject;
Regards Adlertz
|
|
Hello I was wondering if it is possible to cast my JSON string as a custom object? basically : var customObject:CustomObject = JSON.decode(evt.result as String) as CustomObject; Regards Adlertz
|
||||
|
|
|
Does it work when you try it? |
||
|
|
|
In AS3, you cannot cast a dynamic object to a custom class using as or CustomClass(customObject). You can, however, use some simple tricks as a workaround. For example, you could declare a constructor for your custom class accepting an Object and initializing it's members with the object properties. You would then use:
PS. Regarding the comments, this is not true for every language... I guess that makes it actionscript specific. |
||
|
|
|
|
Per se, this is not possible. And that has nothing to do with ActionScript. In most other languages you have the same problem, since on the left side you have an anonymous object, if the language supports any such thing, or a hash. Anyway. There are different solutions, this would be one, that can handle a few things:
restrictions:
hope it helps anyway ;) |
|||
|
|
|
|
You cannot cast custom objects from dynamic objects. But you can extend the JSON-Decoder from as3corelib. I did that for exactly this reason. When I'm decoding a json-String I pass the class name of the encoded object. With a little use of reflection you get a strong typed custom object back. Of course you need to know the class name of the encoded object before decoding... Mike |
||
|
|