JSON

2017-05-09  本文已影响0人  我爱吃青苹果

JSON 对象

1.JSON 对象使用在大括号{}中书写
2.对象可以包含多个 key/value(键/值)对
3.key 必须是字符串,value 可以是合法的 JSON 数据类型(字符串, 数字, 对象, 数组, 布尔值或 null)
4.key 和 value 中使用冒号(:)分割
5.每个 key/value 对使用逗号(,)分割。
var myObj, x;
myObj = { "name":"runoob", "alexa":10000, "site":null };
x = myObj.name;
myObj = {
    "name":"runoob",
    "alexa":10000,
    "sites": {
        "site1":"www.runoob.com",
        "site2":"m.runoob.com",
        "site3":"c.runoob.com"
    }
}

JSON 数组

1.JSON 数组在中括号中书写
2.JSON 中数组值必须是合法的 JSON 数据类型(字符串, 数字, 对象, 数组, 布尔值或 null)
{
"name":"网站",
"num":3,
"sites":[ "Google", "Runoob", "Taobao" ]
}
myObj = {
    "name":"网站",
    "num":3,
    "sites": [
        { "name":"Google", "info":[ "Android", "Google 搜索", "Google 翻译" ] },
        { "name":"Runoob", "info":[ "教程", "工具", "微信" ] },
        { "name":"Taobao", "info":[ "淘宝", "网购" ] }
    ]
}
上一篇下一篇

猜你喜欢

热点阅读