检查是否启用了Access-Control-Allow-Origin

时间:2018-02-07 18:49:38

标签: javascript angular cors

我正在尝试使用Angular 5上的应用程序来运行禁用了Access-Control-Allow-Origin的第三方API。我在我的chrome中安装了一个允许它的扩展。如何在浏览器中启用它以便我可以执行其他操作?我想做点什么。

if(Access-Control-Allow-Origin == enabled){
// do this
}}
else{
//do that 
}

1 个答案:

答案 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)
        }
    })