如何解决对预检请求的问题响应未通过访问控制检查错误?

时间:2019-10-17 10:32:30

标签: node.js angular cors

我在一个VM中有一个角度代码,在另一个VM中有节点代码。我需要从该角度VM到节点VM进行API调用。我也包括了cors模块。但是在进行API调用时,仍然出现

之类的错误
  

“从来源“ http:IP2”访问“ http:IP1”处的xmlhttprequest已被CORS策略阻止:对预检请求的响应未通过访问控制检查:无“访问控制”。

我也设置了这样的标题

app.use(function(req,res,next) {
    res.setHeader('Access-Control-Allow-Origin','*');
    res.setHeader('Access-Control-Allow-Methods','POST');
    res.setHeader('Access-Control-Allow-Headers','X-Requested-With,content-type');
    res.setHeader('Access-Control-Allow-Credentials',true);
    next();
}); 

app.use(cors());

但是我仍然遇到错误。有人可以告诉我如何解决此错误吗?

1 个答案:

答案 0 :(得分:0)

尝试显式设置您的本地主机并添加所需的方法类型:

// Add headers
app.use(function (req, res, next) {

    // Website you wish to allow to connect
    res.setHeader('Access-Control-Allow-Origin', 'http://localhost:4200');
    // desired types of methods
    res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
    res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');

    // Set to true if you need the website to include cookies in the requests sent
    // to the API (e.g. in case you use sessions)
    res.setHeader('Access-Control-Allow-Credentials', true);

    // Pass to next layer of middleware
    next();
});

更新:

例如,您的节点服务器托管在http://127.0.0.1:8000上。然后,您的Angular应用程序应为http://127.0.0.1:4200

更新1:

npm install --save cors

然后:

var express = require('express');
var cors = require('cors');
var app = express();
app.use(cors());