Load JSON Faster in Flex 4
问题 I have a Flex application,I am loading a JSON file with more than 40,000 items. Does Flex provide a way to load this file faster? 回答1: Target Flash Player 11 and use the new native JSON parse: var obj:Object = JSON.parse( value ); http://www.skyript.com/2011/07/json-parsingencoding-with-native-parser.html 来源: https://stackoverflow.com/questions/7816784/load-json-faster-in-flex-4