egg配置允许跨域和白名单

2019-07-31  本文已影响0人  无花无酒_3cd3
安装egg-cors
  npm install egg-cors --save
config/plugin.js
'use strict';

/** @type Egg.EggPlugin */
module.exports = {
  // had enabled by egg
  // static: {
  //   enable: true,
  // }
  cors: {
    enable: true,
    package: 'egg-cors'
    }
};

config/config.default.js
   config.security = {
    csrf: {
        enable: false
      },
      domainWhiteList: [ '*' ]  //白名单
    };
   config.cors = {
      origin: '*',
      allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH,OPTIONS'
  };
上一篇 下一篇

猜你喜欢

热点阅读