Load JSON Faster in Flex 4

心不动则不痛 提交于 2019-12-18 08:59:13

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!