我有一个名为“config.json”的文件
{
"book": {
"config": {
"uuid": "81393fe88f7c4e5a98070905790b39e1",
"type": "fullscreen",
"size": "1024,768"
}
}
}
然后我使用 $.ajax 来读取这个文件,
$.ajax({
url:...,
data:{...},
type:"get",
dataType:'json',
success:function(data, textStatus){
console.log(data);
}
})
但数据返回是字符串格式,如:
"{\n "book": {\n ... }\n }\n }\n}"
然后我想把数据解析成json,但是所有的解析函数都不起作用,
var obj=$.parseJSON(data);
但结果是“空”
然后我想使用“jquery.json-2.3.js”
console.log(data.toJSON());
但结果是data.toJSON is not a function
我该如何解决这个问题?将字符串解析为 json