私はこの質問を見ていました
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 で考えられるその他の構造と、それは何と呼ばれますか?
ありがとう...私が明確であることを願っています