嵌套JSON对象-我是否必须对所有内容都使用数组?

嵌套JSON对象-我是否必须对所有内容都使用数组?,第1张

嵌套JSON对象-我是否必须对所有内容都使用数组

您不需要使用数组。

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.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5128717.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存