Jquery Ajax cannot parse JSON objects. The cause and solution of invalid JSON error are reported.

Source: Internet
Author: User
Tags javascript eval

Next let's talk about the problems encountered recently when using the $. Ajax () method in jquery 1.4 to parse JSON objects.

The JSON object is:CopyCodeThe Code is as follows: [{Name: 'Sale of second-hand houses ', infocount: 0, pageurl:'/ershoufang '}, {Name: 'Buy of second-hand houses', infocount: 0, pageurl: '/qiugou'}, {Name: 'second-hand house fit', infocount: 0, pageurl:'/esfzhuangxiu '}, {Name: 'second-hand recycling', infocount: 0, pageurl: '/huishou'}, {Name: 'Used motorcycle', infocount: 0, pageurl: '/motor'}, {Name: 'Used car purchase', infocount: 0, pageurl: '/ershoucheqg'}, {Name: 'second-hand car transfer', infocount: 9, pageurl:'/ershoe e '}, {Name: 'second-hand market', infocount: 0, pageurl: '/ershoushichang'}]

I wonder if you have found any problems with this JSON object. This method is correct in JS scripts and versions earlier than jquery 1.4. In versions 1.3 and earlier, jquery parses JSON objects using the Javascript eval method. In section 1.4, jquery uses a more rigorous method to parse JSON. All content must use double quotation marks.

As shown in jquery. parsejson (JSON), parsejson is interpreted as follows:

Accepts a JSON string and returns the parsed object.

Inputting a malformed JSON string throws an exception. For example, the following are malformed JSON strings:
{Test: 1} (test is not surrounded by double quotation marks)
{'Test': 1} (using single quotes instead of double quotes)

In addition, if you do not input anything, or an empty string, null, or undefined, parsejson will return null.

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.