JSON serializer/parser in JavaScript

Source: Internet
Author: User

There is a global JSON object in the JSON library, including 22 methods: The serializer is parse () and the parser stringify ()

Here is a description of the use of these two methods:

1.parse () to parse a JSON string into an object or array

var jsontext = ' {' userName ': ' Zhangsan ', ' Password ': ' 123456 '} ';//Note: Each attribute name and value are enclosed in double quotation marks and single quotes are written outside, otherwise an exception will occur.

var Changejson = Json.parse (jsontext);

Console.log (Changejson);//result is an object, object {userName: "Zhangsan", Password: "123456"}

2.stringify () is used to parse an object or array into a text string that contains the serialized JSON

var arr = [' C ', ' B ', {test:' C '}];

var arrchange = json.stringify (arr);

Console.log (arrchange);//The result is a JSON-formatted string, ["A", "B", {"Test": "C"}]

JSON serializer/parser in JavaScript

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.