美文网首页
node express 跨域设置

node express 跨域设置

作者: blank的小粉er | 来源:发表于2017-07-05 10:40 被阅读0次

    在app.js添加以下代码

    //设置请求头
    app.all('*', function(req, res, next) {//允许全部跨域
    
        res.header("Access-Control-Allow-Headers", "Content-Type,Content-Length, Authorization,'Origin',Accept,X-Requested-With");
        res.header("Access-Control-Allow-Origin", "*");
        res.header("Content-Type", "application/json;charset=utf-8");
        //console.log('------')
        next();
    });
    
    

    相关文章

      网友评论

          本文标题:node express 跨域设置

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