文件从Angular 2前端以enctype multipart / formdata类型上传到我的NodeJS后端。我已经用以下代码处理了CORS。
app.use(cors());
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Headers","Origin, X-Requested-With, Content-Type, Accept, Authorization,Content-Disposition");
next();
}
但是,从前端应用程序上载文件时,会出现带有以下错误描述的CORS错误。
"missing token 'enctype' in CORS header Allow-Access-Control-Header from CORS preflight channel."
有人可以帮忙吗?