从此无心爱良夜,任他明月下西楼

express设置跨域

在app.js的设置中添加

//设置允许跨域访问该服务.
app.all('*', function (req, res, next) {
    res.header('Access-Control-Allow-Origin', '*');
    res.header('Access-Control-Allow-Headers', 'Content-Type');
    res.header('Access-Control-Allow-Methods', '*');
    res.header('Content-Type', 'application/json;charset=utf-8');
    next();
  });

 

posted @ 2023-04-10 15:55  明月下  阅读(311)  评论(0)    收藏  举报

页脚