JSON语法
2019-07-30 本文已影响0人
欣_m
1.数据在名称/值对中
2.数据由逗号分隔
3.大括号保存对象, 对象可以包含多个 key/value(键/值)对
4.中括号保存数组
对象语法
{ "name":"runoob", "alexa":10000, "site":null }
JSON 对象使用在大括号({})中书写。
对象可以包含多个 key/value(键/值)对。
key 必须是字符串,value 可以是合法的 JSON 数据类型(字符串, 数字, 对象, 数组, 布尔值或 null)。
key 和 value 中使用冒号(:)分割。
每个 key/value 对使用逗号(,)分割。
嵌套JSON
myObj = { "name":"runoob",
"alexa":10000,
"sites":
{ "site1":"www.runoob.com", "site2":"m.runoob.com",
"site3":"c.runoob.com" }
}
document.write(myObj.sites.site1);
输出www.runoob.com
JSON数组
myObj = {
"name":"网站",
"num":3,
"sites":[ "Google", "Runoob", "Taobao" ]
}
x = myObj.sites[0];
document.write(x); 输出Google
嵌套JSON对象的数组
myObj = {
"name":"网站",
"num":3,
"sites": [
{ "name":"Google", "info":[ "Android", "Google 搜索", "Google 翻译" ] },
{ "name":"Runoob", "info":[ "菜鸟教程", "菜鸟工具", "菜鸟微信" ] },
{ "name":"Taobao", "info":[ "淘宝", "网购" ] }
]
}