我试图弄清楚以下json数据有什么问题,我现在正在使用http://jsonlint.com/验证它是否会失败;
Parse error on line 9:
... "Question 2" : [
-----------------------^
Expecting 'EOF', '}', ',', ']'
Run Code Online (Sandbox Code Playgroud)
我的代码;
{ "questions" : {
"Question 1" : [
{ "Q" :"Question" },
{ "A" : "Answer A" },
{ "B" : "Answer B" },
{ "C" : "Answer C" },
{ "D" : "Answer D" },
{ "Answer" : "C" }
]
"Question 2" : [
{ "Q" :"Question" },
{ "A" : "Answer A" },
{ "B" : "Answer …Run Code Online (Sandbox Code Playgroud) json ×1