美文网首页
egg配置允许跨域和白名单

egg配置允许跨域和白名单

作者: 无花无酒_3cd3 | 来源:发表于2019-07-31 20:20 被阅读0次
安装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'
  };

相关文章

网友评论

      本文标题:egg配置允许跨域和白名单

      本文链接:https://www.haomeiwen.com/subject/nlrxdctx.html