作者:皇家城市_579 | 来源:互联网 | 2023-10-17 18:49
您不需要使用数组。
JSON值可以是数组,对象或基元(数字或字符串)。
您可以这样编写JSON:
{
"stuff": {
"onetype": [
{"id":1,"name":"John Doe"},
{"id":2,"name":"Don Joeh"}
],
"othertype": {"id":2,"company":"ACME"}
},
"otherstuff": {
"thing": [[1,42],[2,2]]
}
}
您可以像这样使用它:
obj.stuff.onetype[0].id
obj.stuff.othertype.id
obj.otherstuff.thing[0][1] //thing is a nested array or a 2-by-2 matrix.
//I'm not sure whether you intended to do that.