egg.js之解决跨域问题(egg-cors)

1.下载 egg-cors 包
npm i egg-cors --save
2.在plugin.js中设置开启cors
exports.cors = {
  enable: true,
  package: 'egg-cors',
};
3.在config.default.js中配置
// add your config here
config.middleware = [];
//多出来的配置==========
config.security = {
  csrf: {
    enable: false,
    ignoreJSON: true
  },
  domainWhiteList: ['http://localhost:8080']
};
config.cors = {
  origin:'*',
  allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH'
};
    原文作者:李佳明先生
    原文地址: https://www.jianshu.com/p/0ddd84f4063c
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞