我需要从这里获取一个 json 文件:
https://raw.github.com/Yelp/yelp-api/master/category_lists/en/category.json
但是,我不断收到错误:
资源解释为脚本,但使用 MIME 类型 text/plain 传输
我正在尝试通过以下方式获取文件:
$.ajax({
url : 'https://raw.github.com/Yelp/yelp-api/master/category_lists/en/category.json',
dataType : 'jsonp',
success: function (data) {
alert("here");
},
error: function () { alert("Error reading category.json");}
});
有没有解决的办法?谢谢。