Ajax检测到“跨域请求被阻止”错误

时间:2020-07-02 01:19:02

标签: javascript jquery ajax

我们在代码上使用第三方API来获取数据。

$.ajax({
  url: API,
  success: function(html, textStatus, xhr){
    //IF OKAY
  },
  error: function(html, textStatus, xhr){
    console.log( "!!!!!!!!! ERROR !!!!!!!!!!!!" );
    console.log( "----", html );
    console.log( "----", xhr.status );
  },
});

如果错误是如何检测到错误的

跨域请求被阻止

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

不幸的是,出于安全原因,不可能在浏览器中最终访问此类错误。请查看类似的线程Is it possible to trap CORS errors?