我有一个很大的json文件,它的结构有点像 JSON
- Lessons
[{ "1 ":
{ " name ": "abc" ,
" number ":"123" ,
"check ":
{ "name ":"abc1" ,
" quizes" :
[ { "Questions " :
[ { "questiontype ": "your name" ,
"questionstem " : "name"
" options " :
[{ answer : "1",
ident : "left",
feedback : "yes" ,
answer: "no",
ident : "yes",
feedback : "yes"}
{ answer
ident
feedback }
{ answer
ident
feedback }]
correct_answers }}
Questions
Questions
Questions
Questions
Questions
Questions
Questions
Questions
Questions ]
practise
show
name
quizes }
2
3}]
上面我只是提供json的树有一些值,这是我第一次从json读取数据我不知道怎么读它plz给我一些提示
答案 0 :(得分:3)
在jQuery中,您可以使用$.parseJSON
var jsonData = '{"a" : "22"}';
$.parseJSON(jsonData)
使用$.parseJSON
时,不要错过在json的根目录中插入单引号(')或双引号(")。
这是一个JSON验证器。 http://jsonlint.com/