1

我很难使用$.getJSON. 我的 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

任何帮助,将不胜感激。

更新:链接到文件

4

0 回答 0