JSON Cheat Sheet - 快速参考指南,收录常用语法、命令与实践。
JSON is a lightweight text-based open standard designed for human-readable data interchange.
.jsonapplication/json{.marker-round}
{
"name": "Jason",
"age": 39,
"height": 1.92,
"gender": "M",
"salary": 70000,
"married": true,
"children": [
{ "name": "Tom", "age": 9, "gender": "M" },
{ "name": "Ava", "age": 7, "gender": "F" }
]
}
| Type | Description |
|---|---|
Number | Double precision floating-point |
String | Series of characters |
Boolean | true or false |
Array | Ordered sequence of values |
Value | String, Number, Boolean, null etc |
Object | Unordered collection of key/value pairs |
null | Null or Empty |
\" | Double quote |
\\ | Backslash |
\/ | Forward slash |
\b | Backspace |
\f | Form feed |
\n | Newline |
\r | Carriage return |
\t | Tab |
\u | Trailed by four hex digits |
{
"url": "https://cheatsheets.zip",
"msg": "Hi,\n\"CheatSheets.zip\"",
"intro": "Share quick reference and cheat sheet for developers."
}
{ "foo": "bar" }
Have to be delimited by double quotes
| Type | Description |
|---|---|
Integer | Digits 1-9, 0 and positive or negative |
Fraction | Fractions like 0.3, 3.9 |
Exponent | Exponent like e, e+, e-, E, E+, E |
{
"positive": 12,
"negative": -1,
"fraction": 10.25,
"exponent": 1.0e2,
"zero": 0
}
{ "foo": 0xff }
In JSON you can use only Decimal Literals
{
"color": "Purple",
"id": "210",
"composition": {
"R": 70,
"G": 39,
"B": 89
},
"empty_object": {}
}
Multiple key/value pairs separated by a comma
[1, 2, 3, 4, 5]
Begins with [ and ends with ]
{
"children": [
{ "name": "Jimmy Smith", "age": 15 },
{ "name": "Sammy Sosa", "age": 12 }
]
}
{
"attributes": ["a1", "a2"],
"methods": ["getter", "setter"],
"empty_array": []
}
{
"my_sequences": [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9, 0],
[10, 11]
]
}
{
"Mark McGwire": {
"hr": 65,
"avg": 0.278
},
"Sammy Sosa": {
"hr": 63,
"avg": 0.288
}
}
{
"Jack": {
"id": 1,
"name": "Franc",
"salary": 25000,
"hobby": ["a", "b"],
"location": {
"country": "A",
"city": "A-A"
}
}
}
let myObject = {
name: 'Jason',
last: 'Doe',
age: 39,
gender: 'M',
salary: 70000,
married: true
};
myObject.name | "Jason" |
myObject["name"] | "Jason" |
myObject.age | 39 |
myObject.other | undefined |
myObject[0] | undefined |
let myObject = {
ref: {
name: 0,
last: 1,
age: 2,
gender: 3,
salary: 4,
married: 5
},
jdoe: ['Jason', 'Doe', 39, 'M', 70000, true],
jsmith: ['Tom', 'Smith', 42, 'F', 80000, true]
};
myObject.ref.age | 2 |
myObject["ref"]["age"] | 2 |
myObject.jdoe | ["Jason", "Doe", 39 ...] |
myObject.jsmith[3] | "F" |
myObject[1] | undefined |
let myArray = [
{
name: 'Jason',
last: 'Doe',
age: 39,
gender: 'M',
salary: 70000,
married: true
},
{
name: 'Tom',
last: 'Smith',
age: 42,
gender: 'F',
salary: 80000,
married: true
},
{
name: 'Amy',
last: 'Burnquist',
age: 29,
gender: 'F',
salary: 60000,
married: false
}
];
myArray[0] | {"name": "Jason", ...} |
myArray[1].name | "Tom" |
myArray[1][2] | 42 |
myArray[3] | undefined |
myArray[3].gender | TypeError: Cannot read... |
let myArray = ['Jason', 'Doe', 39, 'M', 70000, true];
myArray[1] | "Doe" |
myArray[5] | true |
myArray[6] | undefined |
地址
Level 10b, 144 Edward Street, Brisbane CBD(Headquarter)Level 2, 171 La Trobe St, Melbourne VIC 3000四川省成都市武侯区桂溪街道天府大道中段500号D5东方希望天祥广场B座45A13号Business Hub, 155 Waymouth St, Adelaide SA 5000Disclaimer
JR Academy acknowledges Traditional Owners of Country throughout Australia and recognises the continuing connection to lands, waters and communities. We pay our respect to Aboriginal and Torres Strait Islander cultures; and to Elders past and present. Aboriginal and Torres Strait Islander peoples should be aware that this website may contain images or names of people who have since passed away.
匠人学院网站上的所有内容,包括课程材料、徽标和匠人学院网站上提供的信息,均受澳大利亚政府知识产权法的保护。严禁未经授权使用、销售、分发、复制或修改。违规行为可能会导致法律诉讼。通过访问我们的网站,您同意尊重我们的知识产权。 JR Academy Pty Ltd 保留所有权利,包括专利、商标和版权。任何侵权行为都将受到法律追究。查看用户协议
© 2017-2025 JR Academy Pty Ltd. All rights reserved.
ABN 26621887572