我很难使用$.getJSON
获取本地存储在手机中的一些JSON数据。我的json数据具有以下结构( allData.json ):
[
{
"name": "Steve",
"address": "Some address",
"keyword": "test"
},
{
"name": "Bill",
"address": "Another address",
"keyword": "cast"
},
...
]
要在 JS 中执行获取程序,我正在使用:
$.getJSON("allData.json", function(json) {
if (json != '' || json != undefined) {
var myData = JSON.parse(json);
console.log(myData);
} else {alert("json is undefined/ empty");}
});
错误: Uncaught SyntaxError: Unexpected token o
任何帮助都将不胜感激。
更新:FILE
的链接