Request header field Access-Control-Allow-Headers is not allowed by Access-Control-Allow-Headers

后端 未结 15 1507
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 16:31

I\'m trying to send files to my server with a post request, but when it sends it causes the error:

Request header field Content-Type is not allowed by

15条回答
  •  星月不相逢
    2020-11-22 16:36

    The following works for me with nodejs:

    xServer.use(function(req, res, next) {
      res.setHeader("Access-Control-Allow-Origin", 'http://localhost:8080');
      res.setHeader('Access-Control-Allow-Methods', 'POST,GET,OPTIONS,PUT,DELETE');
      res.setHeader('Access-Control-Allow-Headers', 'Content-Type,Accept');
    
      next();
    });
    

提交回复
热议问题