Flex JSON: ignore certain properties?
Is there some libra开发者_如何学Cry for flex, that will let me:
- define properties to fully exclude from serialization
- define classes to serialize without the property names (as if they were an array)
If you want to exclude a property from serialization you can use the [Transient] meta tag.
[Transient]
public var someVar:String;
精彩评论