Detailed explanation of json file writing format

Detailed explanation of json file writing format

What is JSON

JSON (JavaScript Object Notation) is a data exchange format.

Why this technology?

Before Json, everyone used XML to transfer data. XML is a plain text format, so it is suitable for exchanging data on the Internet, but the XML format is relatively complex. Finally, Douglas Crockford invented JSON, an ultra-lightweight data exchange format.

How to use JSON

- Data format

JSON is actually a subset of JavaScript, so the data format of JSON corresponds to JavaScript:

- number => JS number 
- boolean => JS boolean
- string => JS string //
- null => JS null 
- array => JS Array expression []
- object => JS {} expression

- Notes

  • JSON specifies that the character set is UTF-8, strings must use "", and Object keys must also use ""
  • The last member of an array or object cannot have a comma

- JS has two built-in Json methods

JSON.stringify( {} , [ ] , "")
//Parameter 1: data to be serialized (object)
//Parameter 2: Control the key value of the object. If you only want to output the specified attributes, pass in an array. //Parameter 3: After serialization, print the output format (a Tab to view json more intuitively)

Any conversion of JavaScript to Json means serializing the object into a Json string before it can be transmitted over the network;

Receive a string in Json format.

JSON.parse( json.DATA ) // Pass in the json string

If we receive a string in JSON format, we just need to deserialize it into a JavaScript object and then use it directly in JavaScript.

Examples:

1. Array method [ ]

[{
"id" : 1 ,
"name" : "xiaoming"
},{
"id" : 2 , 
"name" : "xiaohong"
}]

2. Object method { }

//Separate the front-end and back-end, it is recommended that the back-end return data to the front-end in the format {
"status" : 0 , //Execution status code "msg" : "SUCCESS", //Description text information, not NULL
"data" :[{ //The array is nested in the object, the array is the returned data,
"id" : 1 ,
"name" : "xiaohong"
},{
"id" : 2,
"name" : "xiaoming"
}]
}

3. Counterexample

{"id" : ox16 } // Illegal, the value must be in decimal {"name" : underfined } // Illegal, no such value [{
"name" : NUll,
"school" : function() {
console.log("This is wrong")
}//Illegal}]//User-defined functions or system built-in functions cannot be used in json

This concludes this article on the detailed explanation of the json file writing format. I hope it will be helpful for everyone’s study, and I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of Json format
  • Understanding JSON (JavaScript Object Notation) in one article
  • 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

<<:  Solution to the problem of passing values ​​between html pages

>>:  Submit the image through the container DockerCommit and push the image DockerPush

Recommend

js to realize a simple advertising window

This article shares the specific code of js to im...

Steps to build MHA architecture deployment in MySQL

Table of contents MAH 1. Introduction to MAH Arch...

Echarts Basic Introduction: General Configuration of Bar Chart and Line Chart

1Basic steps of echarts Four Steps 1 Find the DOM...

Learn the key knowledge that must be mastered in the Vue framework

1. What is Vue Vue is a progressive framework for...

HTML line spacing setting methods and problems

To set the line spacing of <p></p>, us...

A brief discussion on MySQL count of rows

We are all familiar with the MySQL count() functi...

Detailed example of MySQL data storage process parameters

There are three types of MySQL stored procedure p...

Detailed explanation of using Vue.prototype in Vue

Table of contents 1. Basic Example 2. Set the sco...

A brief analysis of the basic concepts of HTML web pages

What is a web page? The page displayed after the ...

How to use Webstorm and Chrome to debug Vue projects

Table of contents Preface 1. Create a new Vue pro...

html+css+js to realize the function of photo preview and upload picture

Preface: When we are making web pages, we often n...

CSS flex several multi-column layout

Basic three-column layout .container{ display: fl...

React event mechanism source code analysis

Table of contents Principle Source code analysis ...