添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
 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();
10 });