我在我的Restify服务器中使用restify-cors-middleware 但是仍然面临cors错误,我已经尝试过通过以下方式使用它
const restifyCORS = require('restify-cors-middleware');
const cors = restifyCORS({
origins: ['*']
});
app.pre(cors.preflight);
app.use(cors.actual);
显示这样的错误
从源访问“ http://localhost:3000/login”处的XMLHttpRequest “ http://localhost”已被CORS策略阻止:请求标头 不允许字段访问控制允许凭证 飞行前响应中的Access-Control-Allow-Header。
任何人都可以在这方面帮助我。.它使我整天都无法忍受。谢谢