我想知道如何以以下格式创建一个简单的JSON数组:
["Question Category"
["Question text?"
[A: "value", B: "value", C: "value", D: "value"]
]
]
我以前从未使用过JSON,但我需要数据在JSON中正确实现它。
你可以这样做:
{
"Question category" : {
"Question text?" : {
"A":"value",
"B": "value" ...
}
}
}
在StackOverflow上有很多关于嵌套JSON的例子
在JSON中可以使用对象和数组。你可能需要的是对象数组。
like so:
{
"category1": [
{
"text": "Question text",
"answers": ["value1", "value2", "value3"]
},
{
"text": "Question text",
"answers": ["value1", "value2", "value3"]
},
{
"text": "Question text",
"answers": ["value1", "value2", "value3"]
}
],
"category2": [
{
"text": "Question text",
"answers": ["value1", "value2", "value3"]
},
{
"text": "Question text",
"answers": ["value1", "value2", "value3"]
},
{
"text": "Question text",
"answers": ["value1", "value2", "value3"]
}
]
}