您不需要使用数组。
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].idobj.stuff.othertype.idobj.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.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)