Load JSON Faster in Flex 4

前端 未结 1 642
一个人的身影
一个人的身影 2020-12-21 08:44

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条回答
  • 2020-12-21 09:05

    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

    JSON performance test

    0 讨论(0)
提交回复
热议问题