我有这个Ajax代码,我无法弄清楚它有什么问题
$.ajax({
type: "GET",
url: "http://url.to.json",
async: false,
beforeSend: function(x) {
if(x && x.overrideMimeType) {
x.overrideMimeType("application/j-son;charset=UTF-8");
}
},
dataType: "json",
success: function(data){
alert(data.meta.poster);
}});
答案 0 :(得分:1)
从"application/j-son;charset=UTF-8"
应用/ JSON;字符集= UTF-8
试试这个。它对我来说非常适合。
$.getJSON("http:// paste your url", function(reponse){
alert(JSON.stringify(reponse))
});