talk about the use of {} curly braces and [] brackets in JS, and then you can understand the JSON structure.
A, {} curly brace, which means defining an object, in most cases a pair of properties and values, or a function.
for example: var = {"Name": "Langshen", "Age": "Langshen"};
an object named "Langshen" is declared above, with multiple properties or functions separated by, (comma), because it is the property of the object,
So when you visit, you should use. (point) to layer access: Langshen.name, Langshen.age, of course, we can also use an array of ways to access, such as: langshen["Name"], langshen["age", the result is the same.
this notation, often used in JSON data structures, is often used when we write function groups, such as:
var langshen = {
Name = function () {
return "Langshen";
},
Age = function () {
return "";
}
}
It is called the same way, because it is a function group, so add (), such as: Alert (Langshen.name ());
two, [] brackets, which represent an array, can also be understood as an array object.
such as: var langshen = ["Name", "Langshen", "Age", "page"];
obviously, each value or function is independent, with multiple values separated by only, (comma), because it is an array object, so it equals:
var langshen = Array ("Name", "Langshen", "Age", "page");
when accessed, it is also an array of alert (langshen[0]);
three, {} and [] with, as we said before, {} is an object, [] is an array, we can make up an array of objects, such as:
var langshen = {"Name": "Langshen",
"MyWife": ["LuLu", "+"],
"Myson": [{"Name": "Son1"},{"name": "Son2"},{"name": "Son3"}]
}
from the structure above, the first item inside an object is a property, the second item is an array, and the third is an array containing multiple objects. Call up, is also a layer of access, the properties of the object with. (dot) overlay, array with [subscript] to access.
such as: Alert (langshen.myson[1). Name);
Talk about the use of {} curly braces and [] brackets in JS