Summary of several methods to parse string into json

Source: Internet
Author: User
Tags parse string

1. The old method:
Copy codeThe Code is as follows:
Function strToJson (str ){
Var json = eval ('+ str + ')');
Return json;
}

2. Common Methods:
Copy codeThe Code is as follows:
Function strToJson (str ){
Return (new Function ("return" + str ))();
}

3. json object methods not supported by IE67:
Copy codeThe Code is as follows:
Function strToJson (str ){
Return JSON. parse (str );
}

4. Methods provided by jQuery:
Copy codeThe Code is as follows:
ParseJSON: function (data ){
If (typeof data! = "String" |! Data ){
Return null;
}
Data = jQuery. trim (data );
If (/^ [\], :{}\ s] * $/. test (data. replace (/\\(? : ["\\\/Bfnrt] | u [0-9a-fA-F] {4})/g ,"@")
. Replace (/"[^" \ n \ r] * "| true | false | null | -? \ D + (? : \. \ D *)? (? : [EE] [+ \-]? \ D + )? /G, "]")
. Replace (/(? : ^ |: | ,)(? : \ S * \ [) +/g ,""))){
Return window. JSON & window. JSON. parse?
Window. JSON. parse (data ):
(New Function ("return" + data ))();

} Else {
JQuery. error ("Invalid JSON:" + data );
}
},

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.