当前位置: 首页 > 工具软件 > egg-core > 使用案例 >

通过安装egg-cors实现egg跨域

司徒啸
2023-12-01

一、安装egg-cors

npm install  egg-cors --save

二、配置plugin.js

'use strict';
/** @type Egg.EggPlugin */

exports.cors = {
  enable: true,
  package: 'egg-cors',
};

三、配置config.default.js

  config.security = {
    csrf: {
      enable: false,
    },
    domainWhiteList: [ '*' ],//允许访问接口的白名单,例如:http://localhost:8080 *表示均可访问
  };

  config.cors = {
    origin: '*',
    allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH,OPTIONS',
  };

 类似资料: