转载: NodeJS设置Header解决跨域问题

 

 1 app.all('*', function (req, res, next) {
 2     res.header('Access-Control-Allow-Origin', '*');
 3     res.header('Access-Control-Allow-Headers', 'Content-Type, Content-Length, Authorization, Accept, X-Requested-With , yourHeaderFeild');
 4     res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');
 5     if (req.method == 'OPTIONS') {
 6         res.send(200);
 7     } else {
 8         next();
 9     }
10 });        

 

相关文章:

  • 2022-01-03
  • 2022-12-23
  • 2021-12-05
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2021-07-18
猜你喜欢
  • 2022-12-23
  • 2021-09-06
  • 2022-12-23
  • 2022-02-10
  • 2022-12-23
  • 2021-07-28
相关资源
相似解决方案