我的 ajax 请求遇到了速率限制的 api。
$.ajax({
url:"https://api.themoviedb.org/xxx",
crossDomain: true,
dataType: "jsonp",
dataObj : index,
success: function (response, textStatus, xhr) {
console.log('success');
}
,error: function(XMLHttpRequest, textStatus, errorThrown) {
console.log('error');
}
});
我想知道我什么时候达到速率限制。
但是对于在控制台中显示的请求:
加载资源失败:服务器响应状态为 429(OK)
我没有看到“成功”或“错误”。就像没有执行成功和错误一样。
有没有办法弹出和提醒,例如?
我试过complete
了,但它也不起作用。
谢谢