码迷,mamicode.com
首页 > Web开发 > 详细

nodejs设置允许跨域

时间:2017-08-03 15:38:39      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:with   put   跨域   服务器   pos   服务   headers   bsp   requested   

//设置服务器跨域权限
app.use(function (req, res, next) {
    res.header("Access-Control-Allow-Origin", "*");
    res.header("Access-Control-Allow-Headers", "X-Requested-With");
    res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");
    next();
});

nodejs设置允许跨域

标签:with   put   跨域   服务器   pos   服务   headers   bsp   requested   

原文地址:http://www.cnblogs.com/gpzhen/p/7279919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!