I have seen references to some browsers natively supporting JSON parsing/serialization of objects safely and efficiently via the window.JSON Object, but details are hard to come by. Can anyone point in the right direction? What are the methods this Object exposes? What browsers is it supported under?
|
|
|||||
|
|
Internet Explorer 8+, Firefox 3.1+, Safari 4+, Chrome 3+, and Opera 10.5+ support native JSON parsing. Don't count on it being available, but if it is, definitely use it for a performance boost, as well as guaranteed security. Links to how it works: Edit: Updated the answer as of October 1, 2011 to make it more relevant and accurate. |
|||||||||||||||
|
|
jQuery-1.7.1.js - 555 line...
|
|||
|
The advantage of using json2.js is that it will only install a parser if the browser does not already have one. You can maintain compatibility with older browsers, but use the native JSON parser (which is more secure and faster) if it is available. Browsers with Native JSON:
G. |
|||
|
|
|
[extending musicfreak comment] If you are using jQuery, use parseJSON
Internally it checks if browser supports .JSON.parse, and (if available) calls native window.JSON.parse. If not, does parse itself. |
|||
|
|