标签: arrays json object
JSON对象是否可以保存JSON数组,如下面的代码所示?
courseJSONObject.put( "students", studentJSONArray );
答案 0 :(得分:1)
是的,它看起来像这样:
{ "students": [] }
例如,这是一个包含students数组的对象,其中包含条目1,2和3:
students
{ "students": [1, 2, 3] }
the documentation和the RFC中的更多内容。