添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
怕老婆的大熊猫  ·  Spring Jpa ...·  7 月前    · 
寂寞的牛肉面  ·  使用ByteBuffer ...·  1 年前    · 
兴奋的沙滩裤  ·  Android ...·  1 年前    · 
老实的回锅肉  ·  lumen ...·  1 年前    · 
 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 });