美文网首页技术文档
Nodejs下cors跨域的问题

Nodejs下cors跨域的问题

作者: 格吾刚哥 | 来源:发表于2017-01-07 19:07 被阅读264次

    cors跨域的问题经常会困扰着开发人员,nodejs做服务端也是如此。

    解决方法有2种:

    1、代码控制

    //设置跨域访问  
    app.all('*', 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");  
        res.header("X-Powered-By",' 3.2.1')  
        res.header("Content-Type", "application/json;charset=utf-8");  
        next();  
    });  
    

    2、借助cors这个模块来解决这个问题。

    npm install cors --save

    var cors = require('cors');
    app.use(cors({
        origin:['http://localhost:8083'],
        methods:['GET','POST'],
        alloweHeaders:['Conten-Type', 'Authorization']
    }));
    

    相关文章

      网友评论

        本文标题:Nodejs下cors跨域的问题

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