我们在代码上使用第三方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 );
},
});
如果错误是如何检测到错误的
跨域请求被阻止
任何帮助将不胜感激。