JSON:
{
"sites": {
"id": "1",
"name": "菜鸟教程",
"url": "www.runoob.com",
"lang": {"en": "false", "zn": "true"},
"address": [
{"city": "beijing", "province": "null"},
{"city": "chengdu", "province": "sichuan"}
]
}
}
对应XML:
{
// 1) 普通属性
"属性名" : "属性值",
// 2) 对象
"对象名" : { 对象的属性、对象或数组 },
// 3) 数组
"数组名" : [
{ 数组的属性、对象或数组 },
{ 数组的属性、对象或数组 }
]
}