egg(六):解决跨域问题

前言:

         egg 项目中使用 egg-cors 处理跨域问题

实现步骤:

1、安装

cnpm install egg-cors -S

2、配置插件  config/plugin.js

//跨域问题
exports.cors = {
  enable: true,
  package: 'egg-cors'
}

3、配置插件 config/config.default.js

config.cors = {
    //匹配规则  域名+端口  *则为全匹配
    //origin: 'http://localhost:8080',
    origin: '*',
    
    //匹配请求方式
    allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH'
  };

你可能感兴趣的:(node,egg,node)