美文网首页
Node.js开发笔记-7: express跨域问题(Acces

Node.js开发笔记-7: express跨域问题(Acces

作者: 原味蛋炒饭 | 来源:发表于2017-09-19 14:53 被阅读150次

    //处理跨域问题,添加以下代码

    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");
      res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
      next();
    });
    

    相关文章

      网友评论

          本文标题:Node.js开发笔记-7: express跨域问题(Acces

          本文链接:https://www.haomeiwen.com/subject/guwwsxtx.html