ここから 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");}
});
これを回避する方法はありますか?ありがとう。