我向http://api.rottentomatoes.com/发送ajax请求,获取有关电影的信息并决定是否已经出局。主要要求是:
$.ajax({
dataType: 'jsonp',
url: "http://api.rottentomatoes.com/api/public/v1.0/movies.json?apikey=[MY API KEY]&q=" + nameOfMovie,
success: function (data) {
var firstMovie = data.movies[0];
imageURL = firstMovie.posters.original.replace('tmb', 'ori');
var key;
if (firstMovie.release_dates['theater']) {
**COMPARING DATES**
if (firstMovie.release_dates['dvd']) {
**COMPARING DATES AGAIN**
}
}
keys[nameOfMovie] = key;
posters[nameOfMovie] = imageURL;
ratings[nameOfMovie] = firstMovie.ratings.audience_score / 10;
numberOfFinishedGETs++;
}
});
但我不时会遇到这样的错误:
这是工作网站,(可以通过CTRL + SHIFT + I访问源代码): LINK 你们能告诉我为什么会出现这样的错误吗? (我一直在阅读论坛,但没有找到合适的东西)