我正在尝试向以下网址发送请求:https://arcane-shore-1097.herokuapp.com但是我收到了上面提到的语法错误。
这是我的代码:
function getEvents(){
var workingurl = "http://api.douban.com/v2/book/1220562";
var url = "https://arcane-shore-1097.herokuapp.com";
var results = [];
$.ajax({
type: "GET",
url: url,
dataType: 'jsonp',
success: function(data){
console.log("Get request succeeded" + data);
}
});
}
这是我在javascript控制台中输出的输出:
资源被解释为脚本但使用MIME类型text / html传输:" https://arcane-shore-1097.herokuapp.com/?callback=jQuery21307401092585641891_1424034937433&_=1424034937434"。 jquery.min.js:4 未捕获的SyntaxError:意外的令牌:arcane-shore-1097.herokuapp.com/:1
我猜这个错误与我从服务器获取json而不是jsonp的事实有关。但我不确定如何解决这个问题。