解决跨域问题

在做一个项目时,使用express编写的后端服务器,在前端请求数据接口会存在跨域问题。跨域问题总是解决不了,最后试了一下午问题终于得到了解决,代码如下。express比较坑,一般的写法没有用

代码如下:
app.all('*', function (req, res, next) {

    res.header('Access-Control-Allow-Origin', 'http://localhost:8083');

    res.header('Access-Control-Allow-Headers', 'Content-Type, Access-Control-Allow-Headers, Accept, Authorization,Origin, X-Requested-With');

    res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');

    res.header('Content-Type', 'application/json;charset=utf-8');

    res.header('Access-Control-Allow-Credentials','true');

    next();

  });

你可能感兴趣的:(解决跨域问题)