On Json/jsonp

Source: Internet
Author: User

First, what is JSON?

JSON is the abbreviation for JavaScript object Notation, in short, the representation of JS objects, is a lightweight data interchange format.

JSON is the syntax for storing and exchanging textual information, similar to XML, but smaller, faster, and easier to parse than XML.

Second, JSON syntax:

JSON syntax is a subset of the JavaScript object notation syntax.

1. Data in name/value pairs;

2. Data is separated by commas;

3. Keep the object in curly braces;

4. square brackets Save the array.

For example:

varjson = {

           "ch":[{

            "names":"怡美家园",

            "data":[2,2,1,1,1,1],

            "times":[10,11,13,13,21,23]},

          {

            "names":"怡美家园",

            "data":[2,2,1,1,1,1],

            "times":[10,11,13,13,21,23]}

          ]

          };

The JavaScript program can use the built-in eval () function to generate native JavaScript objects with JSON data.

JSON string converted to JSON format:

var txt = ' {' Employees ': [' +
' {' firstName ': ' Bill ', ' lastName ': ' Gates '}, ' +
' {' firstName ': ' George ', ' lastName ': ' Bush '}, ' +
' {' firstName ': ' Thomas ', ' lastName ': ' Carter '}]} ';

obj = json.parse (txt);

On Json/jsonp

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.