我正在尝试使用Angular 5上的应用程序来运行禁用了Access-Control-Allow-Origin的第三方API。我在我的chrome中安装了一个允许它的扩展。如何在浏览器中启用它以便我可以执行其他操作?我想做点什么。
if(Access-Control-Allow-Origin == enabled){
// do this
}}
else{
//do that
}
答案 0 :(得分:0)
我建议你使用jQuery来做到这一点。
$.ajax("Put a file name here you are trying to get")
.fail(function(d) {
if (d.status != "200" || d.statusText == "error") {
// do stuff (this dosent always work)
}
})