Nodejs Express 跨域访问

2021/4/20 1:26:41

本文主要是介绍Nodejs Express 跨域访问,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

app.all('*',function(req,res,next))   -->* 代表所有访问 ,

  res.header('Access-Control-Allow-Origin', '*');  ---->代表同意跨域
  res.header('Access-Control-Allow-Headers', 'Content-Type, Content-Length, Authorization, Accept, X-Requested-With ');  ------>代表支付HTTP头字段
  res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');  ------>代表支持的HTTP方法

//开户跨域访问
app.all('*',function (req, res, next) {
  res.header('Access-Control-Allow-Origin', '*');
  res.header('Access-Control-Allow-Headers', 'Accept,Content-Type,Content-Length, Authorization,X-Requested-With ');
  res.header('Access-Control-Allow-Methods', 'POST,GET,PUT,DELETE,OPTIONS');

  if ('OPTIONS' == req.method) {
    res.send(200); /让options请求快速返回/
  }
  else {
    next();
  }
});

 



这篇关于Nodejs Express 跨域访问的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程