Nodejs下cors跨域的问题

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跨域的问题)