Detailed explanation of Json format

Detailed explanation of Json format

JSON ( JavaScript Object Notation ) is a lightweight data exchange format. It is easy to read and understand, and easy for machines to parse and generate. JSON uses a language-independent text format and uses conventions similar to the C language family (including C, C++, C#, Java, JavaScript, Perl, Python, etc.). These features make JSON an ideal data exchange language.

A JSON is built on two structures:

A collection of name/value pairs. In different languages, this is understood as an object, record, struct, dictionary, hash table, keyed list, or associative array. An ordered list of values. In most languages, this is understood as an array.

2. JSON format

1. Object

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

2. Arrays

An array is an ordered collection of values. An array starts with "[" (left bracket) and ends with "]" (right bracket). Use "," (comma) to separate values.

The content of the three values

value can be a string enclosed in double quotes, a number , true , false , null , an object , or an array . These structures can be nested.

string is a collection of any number of Unicode characters enclosed in double quotes, using backslash escapes. A character is a single character string .

A string is very similar to a string in C or Java.

number are also very similar to numbers in C or Java. Remove unused octal and hexadecimal formats. Remove some encoding details.

Four Examples

Note: The string must be enclosed in double quotes.

Arrays and objects can be nested within arrays

{
    "name": "BeJson",
    "url": "http://www.bejson.com",
    "page": 88,
    "isNonProfit": true,
    "address": {
        "street": "Technology Park Road.",
        "city": "Suzhou, Jiangsu",
        "country": "China"
    },
    "links": [
        {
            "name": "Google",
            "url": "http://www.google.com"
        },
        {
            "name": "Baidu",
            "url": "http://www.baidu.com"
        },
        {
            "name": "SoSo",
            "url": "http://www.SoSo.com"
        }
    ]
}

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of json file writing 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

<<:  HTML tags explained

>>:  Summary of four ways to introduce CSS (sharing)

Recommend

Design Association: Why did you look in the wrong place?

I took the bus to work a few days ago. Based on m...

JavaScript+HTML to implement student information management system

Table of contents 1. Introduction 2. Rendering 3....

MySQL 5.7 installation and configuration tutorial under CentOS7 (YUM)

Installation environment: CentOS7 64-bit, MySQL5....

Typical cases of MySQL index failure

Table of contents Typical Cases Appendix: Common ...

Example analysis of mysql variable usage [system variables, user variables]

This article uses examples to illustrate the usag...

CSS3 to achieve timeline effects

Recently, when I turned on my computer, I saw tha...

Introduction to container of() function in Linux kernel programming

Preface In Linux kernel programming, you will oft...

Website redesign is a difficult task for every family

<br />Every family has its own problems, and...

Detailed explanation of MySQL delayed replication library method

Simply put, delayed replication is to set a fixed...

How to move a red rectangle with the mouse in Linux character terminal

Everything is a file! UNIX has already said it. E...

How to deploy Confluence and jira-software in Docker

version: centos==7.2 jdk==1.8 confluence==6.15.4 ...

About using Alibaba's iconfont vector icon in Vue

There are many import methods on the Internet, an...

Example code for Html layered box-shadow effect

First, let’s take a look at the picture: Today we...

Linux uses iptables to limit multiple IPs from accessing your server

Preface In the Linux kernel, netfilter is a subsy...