最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - What's faster to parse lots of data (5Mb): eval or json? - Stack Overflow

programmeradmin1浏览0评论

I want to get, via ajax, a collection of data objects and parse them into JS data.

Currently I have 2 choices: - Server returns valid javascript code and then I eval it. - Server returns JSON object and then I eval the json object

What is the fastest of these in Firefox? (I only care about the "parsing" performance, not server or data transfer)

I want to get, via ajax, a collection of data objects and parse them into JS data.

Currently I have 2 choices: - Server returns valid javascript code and then I eval it. - Server returns JSON object and then I eval the json object

What is the fastest of these in Firefox? (I only care about the "parsing" performance, not server or data transfer)

Share Improve this question asked Apr 9, 2010 at 2:11 AlfaTeKAlfaTeK 7,78514 gold badges53 silver badges92 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

Have a look at the results VinylFox came up with when he tested JSON decoding in the wild. The native functions performed best across all browsers.

In Firefox 3.5+ there is a native json parsing function window.JSON.parse - this would likely be the fastest. In older browsers, you might have better luck with (new Function("return "+json))()

发布评论

评论列表(0)

  1. 暂无评论