我在看这个问题
我对 JSON 结构的不同名称感到困惑
- 什么是简单的 JSON?
- JSON 数组?
- JSON数组的数组?
- 其他可能的
示例 1:这叫什么
{
"MIT_COLLEGE": [
{
"_id": 1,
"StudentName": "Sam",
"Student_Age": "24",
"Student_phone": "8725436232",
"Student_sex": "Male",
},
{
"_id": 2,
"StudentName": "kira",
"Student_Age": "22",
"Student_phone": "8725136232",
"Student_sex": "Female",
}
],
"CAMBRIDGE_COLLEGE": [
{
"_id": 1,
"StudentName": "Paul",
"Student_Age": "26",
"Student_phone": "87333336232",
"Student_sex": "Male",
},
{
"_id": 2,
"StudentName": "michael",
"Student_Age": "22",
"Student_phone": "872115436232",
"Student_sex": "Male",
}
]
}
示例 2::这叫什么
{
"_id": 2,
"StudentName": "michael",
"Student_Age": "22",
"Student_phone": "872115436232",
"Student_sex": "Male",
}
JSON 中其他可能的结构,它叫什么?
谢谢...希望我很清楚