在本地使用node写的接口,使用postman可以正常访问,可是在vue项目中使用axios访问时出现跨域问题。
在这里插入图片描述

只需让res返回数据时 加上 res.header('Access-Control-Allow-Origin', '*'); 即可

在这里插入图片描述

使用app.all

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();
});
Logo

前往低代码交流专区

更多推荐