Node.js后台配置解决跨域问题(express框架)

如果用了nodejs 其实直接用proxy 也可以解决跨域,又简单。

当然这里说另一种,直接写在头部信息的:

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')
        //这段仅仅为了方便返回json而已
    res.header("Content-Type", "application/json;charset=utf-8");
    if(req.method == 'OPTIONS') {
        //让options请求快速返回
        res.sendStatus(200); 
    } else { 
        next(); 
    }
});

猜你喜欢

转载自blog.csdn.net/qq_25600055/article/details/80994095