The conversion of object to string in JS

Source: Internet
Author: User

When using JSON2. JS file Json.parse (data) method, encountered a problem:

throw new SyntaxError (' Json.parse ');

To inquire about the information, the general meaning is as follows:

The Json.parse method throws an SyntaxError exception when it encounters a non-resolvable string.

namely: Json.parse (text, Reviver), this method parses a JSON text to produce an object or array. T can throw a SyntaxError exception.

So, here is a summary of the JS object and string conversion, because this involves browser compatibility issues.

how the 1:jquery plugin supports conversion
The code is as follows:
$.parsejson (JSONSTR); Jquery.parsejson (JSONSTR), you can convert a JSON string into a JSON object

In turn, use the Serialize series method: for example: var fields = $ ("SELECT,: Radio"). Serializearray ();


2: Browser-supported conversion mode (FIREFOX,CHROME,OPERA,SAFARI,IE9,IE8) and other browsers
The code is as follows:
Json.parse (JSONSTR); You can convert a JSON string into a JSON object
Json.stringify (Jsonobj); You can convert a JSON object to a JSON string

Note: IE8 (compatibility mode), IE7 and IE6 do not have JSON objects and need to introduce json.js or json2.js.

3:javascript Supported conversion modes
Eval (' (' + jsonstr + ') '); You can convert a JSON string to a JSON object, noting that you need to wrap a pair of parentheses outside the JSON character
Note: IE8 (compatibility mode), IE7 and IE6 can also use eval () to convert strings to JSON objects, but these methods are not recommended, which is unsafe for eval to execute an expression in a JSON string.

4:json Official way of conversion
http://www.json.org/, provides a json.js so that IE8 (compatibility mode), IE7 and IE6 can support JSON objects as well as their stringify () and Parse () methods;

The conversion of object to string in JS

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.