Understanding JSON (JavaScript Object Notation) in one article

Understanding JSON (JavaScript Object Notation) in one article

JSON (JavaScript Object Notation, JS Object Notation) is a lightweight data exchange format, commonly used by servers to pass data to web pages . Like XML, JSON is a plain text-based data format.

The file suffix of a Json file is .Json , and the MIME type of the Json text is application/Json .

JSON appears

Before JSON came along, people used XML to transfer data. Because XML is a plain text format, it is suitable for exchanging data over the Internet. XML itself is not complicated, but with a bunch of complex specifications such as DTD, XSD, XPath, XSLT, etc., any normal software developer will feel overwhelmed when encountering XML. In the end, everyone finds that even if you study hard for several months, you may not be able to understand the XML specifications.

Finally, one day in 2002, Douglas Crockford invented JSON, an ultra-lightweight data exchange format, in order to save software engineers who were in dire straits and had been fooled by several giant software companies for a long time.

Because JSON is very simple, it quickly became popular in the Web world and became an ECMA standard. Almost all programming languages ​​have libraries for parsing JSON, and in JavaScript, we can use JSON directly because JavaScript has built-in JSON parsing.

Json structure

Json has two basic structures, namely Json object and Json array. Various complex structures can be represented by the combination of Json objects and Json arrays.

Json Object

The object structure starts with { It starts with } and ends with }. The middle part consists of 0 or more key/value pairs separated by English characters, and the key and value are separated by English characters : The grammatical structure of the object structure is as follows:

insert image description here

The key must be of String type and must be enclosed in double quotes. value can be a data type such as String, Number, Object, Array, etc. For example, a person object contains information such as name, password, age, etc., and the JSON representation is as follows

{
    "pname":"Zhang San",
    "password":"123456",
    "page":40
}

JSON objects are stored within curly braces.

Just like in JavaScript, objects can hold multiple key/value pairs.

Json object and JavaScript object

Everything in JavaScript is an object, such as strings, numbers, arrays, dates, etc. In JavaScript, an object is data that has properties and methods.

The Json object we usually refer to is a JavaScript object in Json format or a JavaScript object that conforms to the Json data structure requirements.

contrast Json JavaScript
meaning Just a data format Represents an instance of a class
transmission Can transfer data across platforms at high speed Unable to transfer
Performance 1. The key must be enclosed in double quotes
2. The value cannot be a method function, and cannot be undefined/NaN
1. Key without quotes
2. Values ​​can be functions, objects, strings, numbers, booleans, etc.
Mutual conversion Json to JavaScript:
1. Json.parse(JsonStr); (not compatible with IE7)
2. eval("("+JsonStr+")"); (compatible with all browsers
JavaScript object conversion Json:
Json.stringify(jsObj);

insert image description here

Convert JSON to JavaScript objects

insert image description here

Json array

The array structure starts with [ and ends with ] , and the middle part consists of a list of 0 or more values ​​separated by English characters , The syntax of the array structure is as follows:

insert image description here

The element types of a Json array can be inconsistent, for example, item1 can be a string type, item2 can be a number type, and item3 can be an object type. The last element of an array cannot be followed by a comma.

Complex array types

insert image description here

Here we create an array containing three objects.

The first is an HTML object, which is also an array containing 5 elements. The second is a JavaScript object that is also an array containing 4 elements. The third one is the Server object, which is also an array containing 3 elements.

Complex object array combination

The above two types of (object, array) data structures can also be combined to form more complex data structures.

Object contains array

insert image description here

Here we create a complex siteInfo object.

The value of the siteUrl property of the siteInfo object is www.haicoder.com, the value of the siteAddr property of the siteInfo object is shanghai, the value of the sitePriority property of the siteInfo object is 1, and the siteModule property of the siteInfo object is an array.

The siteModule array has two elements, the first element is HTML and the second element is JavaScript. Both elements are also of an array type.

Array contains objects

Just like in JavaScript, arrays can contain objects:

"employees":[  
    {"firstName":"John", "lastName":"Doe"},  
    {"firstName":"Anna", "lastName":"Smith"},  
    {"firstName":"Peter", "lastName":"Jones"}  
]

In the above example, the object "employees" is an array. Contains three objects.

Each object is an employee record (first and last name).

JSON syntax rules

  • The data is key/value pairs.
  • The data is separated by commas.
  • Curly brackets store objects and square brackets store arrays

To ensure uniform parsing, JSON strings must be enclosed in double quotes "" and Object keys must also be enclosed in double quotes "" .

Json key-value pairs

The writing format of Json data is: name/value pair. Just like JavaScript object properties. A name/value pair consists of the field name (enclosed in double quotes), followed by a colon, and then the value.

insert image description here

Data type of Json value

Json values ​​can be of the following types:

type describe
Number Json numeric types can support integer or floating point types, but cannot use octal and hexadecimal formats. Json numeric types also cannot use NaN and Infinity.
String Json strings must be written between double quotes, and only double quotes. Wrap Unicode characters and backslash escape characters. There is no character type in Json, a character type is a single string.
Boolean Json Boolean value true or false, can only be lowercase. Values ​​quoted with double quotes are not Boolean values.
Array An ordered sequence of values.
Object { An unordered collection of key:value pairs. }
null null.
JSON uses JavaScript syntax, but the JSON format is just text.
Text can be read by any programming language and passed as a data format.

Douglas has been a senior architect at Yahoo for a long time and naturally loves JavaScript. The Json he designed is actually a subset of JavaScript syntax and is a string representation of JavaScript objects. Json uses text to represent the information of a JavaScript object, which is essentially a string.

Json uses JavaScript syntax

Because Json uses JavaScript syntax, no additional software is required to process Json in JavaScript.

insert image description here

Here we create an object array through JavaScript and assign values ​​to the object array.

Access content

insert image description here

Modify data

Modify the category of the second element of the object:

modules[1].category = "ES6";

Json and JavaScript object traversal

Both Json string traversal and JavaScript object traversal use the for-in loop to traverse.

Json traversal

We create a haicoder.html file and enter the following code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Json traversal</title>
    <script type="text/javascript">
        console.log("haicoder.net (www.haicoder.net)");
        var str = {"name":"haicoder", "url":"www.haicoder.net"};
        for (var k in str) {
            console.log(k + " -> " + str[k]);
        }
    </script>
</head>
<body>
</body>
</html>

First, we defined a Json string str. Next, we use a for loop to traverse the Json string, k is the key in the Json string, and str[k] is the value corresponding to the Json string key.

Open the file with a browser, and the browser output is as shown below:

insert image description here

JavaScript Object Traversal

We create a haicoder.html file and enter the following code:

!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>JavaScript Object Traversal</title>
    <script type="text/javascript">
        console.log("haicoder.net (www.haicoder.net)");
        var obj = {name:"haicoder", url:"www.haicoder.net"};
        for (var k in obj) {
            console.log(k + " -> " + obj[k]);
        }
    </script>
</head>
<body>
</body>
</html>

First, we define a JavaScript object obj. Next, we use a for loop to traverse the JavaScript object, k is the key of the JavaScript object, and obj[k] is the value corresponding to the JavaScript object key.

insert image description here

Json and JavaScript array traversal

Both Json array traversal and JavaScript array traversal use for-in loop to traverse

Json array traversal

We create a haicoder.html file and enter the following code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Json array traversal</title>
    <script type="text/javascript">
        console.log("haicoder.net (www.haicoder.net)");
        var jsonArr = [
            {"mod":"json", "url":"www.haicoder.net/json"},
            {"mod":"vue", "url":"www.haicoder.net/vue"},
            {"mod":"python", "url":"www.haicoder.net/python"}
        ]
        for (var k in jsonArr) {
            console.log(k + " -> " + jsonArr[k].mod + " -> " + jsonArr[k].url);
        }
    </script>
</head>
<body>
</body>
</html>

First, we define a Json array, each element in the array is an object. Next, we use a for loop to traverse the Json array, k is the subscript of the Json array, and jsonArr[k] is the value corresponding to the Json array subscript key.

We use . to get the value of each object in the Json array.

insert image description here

JavaScript Object Array Traversal

var Js_Result = [
  {
    name: "haicoder",
    url: "www.haicoder.net",
    age: 20
  },
  {
    name: "JavaScript",
    url: "www.JavaScript.net",
    age: 30
  }
]
for (var i in Js_Result ){ // i is the array subscript console.log(i+" "+Js_Result[i].firstName
 +" "+Js_Result[i].lastName
 +" "+Js_Result[i].age);
}
//The result output is 0 haicoder www.haicoder.net 20
1 JavaScript www.JavaScript.net 30

Save the JavaScript object to the array Js_Result. Use a for loop to traverse Json_Result, where i is the array index and obtain the corresponding value through Js_Result[i].firstName.

Serialization

Converting any JavaScript object to JSON means serializing the object into a string in JSON format so that it can be transmitted to other computers over the network.

Let's first serialize the Xiaoming object into a JSON string:

insert image description here

To make the output look better, you can add parameters and output according to indentation:

JSON.stringify(xiaoming, null, ' ');

result:

{
"name": "Xiaoming",
"age": 14,
"gender": true,
"height": 1.65,
"grade": null,
"middle-school": "\"W3C\" Middle School",
"skills": [
"JavaScript",
"Java",
"Python",
"Lisp"
]
}

You can also pass in a function so that each key-value pair of the object will be processed by the function first:

function convert(key, value) {
    if (typeof value === 'string') {
        return value.toUpperCase();
    }
    return value;
}

JSON.stringify(xiaoming, convert, ' ');

The above code converts all attribute values ​​to uppercase:

{
  "name": "Xiaoming",
  "age": 14,
  "gender": true,
  "height": 1.65,
  "grade": null,
  "middle-school": "\"W3C\" MIDDLE SCHOOL",
  "skills": [
    "JAVASCRIPT",
    "JAVA",
    "PYTHON",
    "LISP"
  ]
}

If we also want to precisely control how to serialize Xiaoming, we can define a toJSON() method for xiaoming to directly return the data that JSON should serialize:

var xiaoming = {
    name: 'Xiaoming',
    age: 14,
    gender: true,
    height: 1.65,
    grade: null,
    'middle-school': '\"W3C\" Middle School',
    skills: ['JavaScript', 'Java', 'Python', 'Lisp'],
    toJSON: function () {
        return { // Output only name and age, and change the key:
            'Name': this.name,
            'Age': this.age
        };
    }
};

JSON.stringify(xiaoming); // '{"Name":"Xiaoming","Age":14}'

Deserialization

Usually we read JSON data from the server and display the data in the web page.

After getting a string in JSON format, we directly use JSON.parse() to turn it into a JavaScript object:

JSON.parse('[1,2,3,true]'); // [1, 2, 3, true]
JSON.parse('{"name":"Xiao Ming","age":14}'); // Object {name: 'Xiao Ming', age: 14}
JSON.parse('true'); // true
JSON.parse('123.45'); // 123.45

JSON.parse() can also accept a function to transform the parsed attributes:

insert image description here

Features of Json

  1. Json is easy to parse and generate by machines, and client-side JavaScript can simply read Json data through eval().
  2. Json is inherently self-describing and easy for humans to read and write.
  3. Json uses a text format that is completely language independent. The formats are all compressed and occupy little bandwidth.
  4. Json parsers and Json libraries support many different programming languages, and currently almost all programming languages ​​support Json.
  5. Because the Json format can be used directly by the server-side code, it greatly simplifies the code development on the server and client sides, but the tasks completed remain unchanged and are easy to maintain.
  6. Json is smaller, faster, and easier to parse than XML.
  7. Json also stipulates that the character set must be UTF-8, so there is no problem in representing multiple languages.

This is the end of this article about understanding JSON (JavaScript Object Notation) in one article. For more relevant JSON (JavaScript Object Notation) content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of json file writing format
  • Detailed explanation of Json format
  • JSON Introduction and Usage Summary
  • Detailed introduction to json objects in js
  • jQuery JSON parsing example
  • JSON principle analysis and example introduction
  • Introduction to JSON data format
  • Concise JSON Introduction
  • A brief introduction to json
  • Json advantages and disadvantages and usage introduction

<<:  Detailed explanation of how to automatically add prefix plugin after CSS3 packaging: autoprefixer

>>:  Detailed description of mysql replace into usage

Recommend

CentOS 7 installation and configuration tutorial under VMware10

If Ubuntu is the most popular Linux operating sys...

CSS3 realizes the animation of shuttle starry sky

Result: html <canvas id="starfield"&...

How to implement online hot migration of KVM virtual machines (picture and text)

1. KVM virtual machine migration method and issue...

jQuery implements the drop-down box for selecting the place of residence

The specific code for using jQuery to implement t...

TypeScript learning notes: type narrowing

Table of contents Preface Type Inference Truth va...

In-depth understanding of MySQL slow query log

Table of contents What is the slow query log? How...

MySQL 8.0.11 Installation Tutorial under Windows

This article records the installation tutorial of...

Detailed explanation of the functions and usage of MySQL common storage engines

This article uses examples to illustrate the func...

Practical record of optimizing MySQL tables with tens of millions of data

Preface Let me explain here first. Many people on...

Responsive Web Design Learning (2) — Can videos be made responsive?

Previous episode review: Yesterday we talked abou...

Common functions of MySQL basics

Table of contents 1. Common function classificati...

You really need to understand the use of CSS variables var()

When a web project gets bigger and bigger, its CS...