Detailed explanation of JSON object definition and value implementation steps in JS

php中世界最好的语言
Release: 2018-05-22 11:53:15
Original
2821 people have browsed it

This time I will bring you a detailed explanation of the steps for JSON object definition and value implementation in JS. What are theprecautionsfor JSON object definition and value implementation in JS. The following is a practical case, let’s take a look. one time.

1.JSON (JavaScriptObject Notation) is a simple data format that is more lightweight than xml. JSON is a native JavaScript format, which means that no special API or toolkit is required to process JSON data in JavaScript.

The rules of JSON are simple: an object is an unordered collection of "name:value" pairs. An object starts with "{" (left bracket) and ends with "}" (right bracket). Each "name" is followed by a ":" (colon); "name/value" pairs are separated by "," (comma).

The rules are as follows:

1) Mapping is represented by colon (":"). Name: Value
2) Parallel data are separated by commas (","). Name 1: value 1, name 2: value 2
3) The mapped collection (object) is represented by curly brackets ("{}"). {Name 1: Value 1, Name 2: Value 2}
4) The collection (array) of parallel data is represented by square brackets ("[]").
[
{Name 1: value, name 2: value 2},
{Name 1: value, name 2: value 2}
]
5) The types that element values can have :string, number, object, array, true, false, null

Five writing methods in 2.json:

1) Traditional way to store data and call data

Copy after login

2) The first style:

Copy after login

3) The second style:

Copy after login

4) The third style:

Copy after login

5) The fourth style:

Copy after login

6) The fifth style:

Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps to implement fuzzy query with jQuery

Async/await hell problem handling

The above is the detailed content of Detailed explanation of JSON object definition and value implementation steps in JS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!