Json.stringify Syntax Examples Explained

Source: Internet
Author: User

Maybe some people are allergic to the word serialization, my understanding is very simple. This means converting the type of the object to a string type (or, more specifically, the JSON type). It's so simple. For example, you have a class, so you can convert it to the corresponding JSON type by using this method.

It is not a short time to know JavaScript, but this usage is true, I have seen it for the first time, ashamed ah ashamed ah. Thus, on the Internet to write information, wrote some examples hope to give some help to the garden.

role: This function is mainly for the purpose of serialization objects. Maybe some people are allergic to the word serialization, my understanding is very simple. This means converting the type of the object to a string type (or, more specifically, the JSON type). It's so simple. For example, you have a class, so you can convert it to the corresponding JSON type by this method. It's simple.Then look.Syntax:Json.stringify (value [, Replacer] [, space])Value: is the required field. Is the object you have entered, such as array Ah, class AH and so on.Replacer: This is optional. It is divided into 2 ways, one is method, the second is an array.Situation one: We first say the data, through the experiment behind us, we can know that it is related to the first one. In general, our serialization results are represented by key-value pairs.For example:  Name: "LAN", Age:25  this form.   so if the second value in the first existence, then the second value is the key, the first value is value to represent, if not, sorry Ignore. "It's not a bit abstract, I think so, but you just wait and see the experiment is OK." Whirring "  situation two: if it is a method, it is very simple, that is, the serialization of each object (remember that every one) into the method inside to deal with.   Space: good understanding, with what to do separators.   1. If omitted, then the displayed value does not have a separator character. Direct output to   2. If it is a number, then it defines the indentation of several characters, of course, if it is greater than 10, the maximum value is 10.  3. If there are some escape characters, such as" \ T ", which means enter, then it is a carriage return per line.   4. If it's just a string, OK, append the strings to the output value in each row. Of course, the maximum length is also 10 characters.   start with an instance description;   1. In case of only one parameter:

var obj={webName: "Home of the Script", url: "Jb51.net", Age: "2"}var str=json.stringify (obj) console.log (str);

The above code implements the conversion function, which is json.stringify (), which is the new method of ECMAScript5. There are certain browser compatibility issues, as follows: (1). This method is supported by browsers IE8 and IE8. (2). Google Chrome supports this method. (3). Firefox supports this method. (4). Opera browser supports this method. (5). This method is supported by the Safria browser.

Or

The results are as follows: Some people may doubt the role of Json.stringify, OK. Well, if we don't want this function. The code looks like this:

Congratulations on the results you've got :

Don't lie to you, go on. 2. The second parameter is present, and the second argument is a function.  

The above method can also be replaced by the following, 2 are the same, but the wording of a little bit different. The results were as follows:

3. The second parameter exists, and the second parameter is not a function, but an array. 3.1 "misunderstanding" if the first parameter is an array, the second argument is an array, only the value of the first parameter is displayed. For example:

The result of the sorry is that the second one is ignored, but the first one is serialized.
3.2 If the first is an object (the object here is like a new in C #), the second one is an array.
Then if the value of the second exists in the first, then the second value is the key, and the first value is represented as value.

The results are as follows: because stu[2] = "HI"; this hi is not found in the first one, so it is not displayed.
4. A third parameter
4.1. If omitted, then the displayed value does not have a separator character. Direct output to
Like what:

The output is: 4.2. If it is a number, then it defines the indentation of several characters, of course, if it is greater than 10, the maximum value is ten.

So the resulting is: 10 characters are empty.
4.3. If there are some escape characters, such as "\ T", which means carriage return, then it is a carriage return per line.
is the same.
4.4. If it is just a string, OK, append the strings to the output value in each row. Of course, the maximum length is also 10 characters.
If it is var json = json.stringify (Student,stu, "Haikou");//

That's it. Good night.  

Json.stringify Syntax Examples Explained

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.