我正在尝试在JSON file generated by YQL之后通过jQuery包含this tutorial并收到以下错误:
Uncaught SyntaxError: Unexpected token ;
这是我目前尝试使用的代码:
$.ajax({
type: "GET",
url: "http://pipes.yahoo.com/pipes/pipe.run?_id=57aa32bf3481c8dca0c07afcf9b9dc29&_render=json",
async: false,
beforeSend: function(x) {
if(x && x.overrideMimeType) {
x.overrideMimeType("application/j-son;charset=UTF-8");
}
},
dataType: "json",
success: function(data){
alert("success");
}
});
我对JSON / JQuery / JS不如我所愿,但它并不是我的主要专业领域;)。我真的很感激任何帮助。
答案 0 :(得分:2)
这是你的问题吗?
x && x.overrideMimeType
而不是
x && x.overrideMimeType