Access to XMLHttpRequest at ‘http://localhost:3000/xxx‘ from origin ‘xxxx‘ has been blocked by COR
在本地使用node写的接口,使用postman可以正常访问,可是在vue项目中使用axios访问时出现跨域问题。只需让res返回数据时 加上res.header('Access-Control-Allow-Origin', '*'); 即可
·
在本地使用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();
});
更多推荐
已为社区贡献1条内容
所有评论(0)