一、egg簡述html
Egg.js,爲企業級框架和應用而生,是阿里開源的企業級 Node.js 框架。git
二、特色github
Egg 奉行『約定優於配置』,按照一套統一的約定進行應用開發,團隊內部採用這種方式能夠減小開發人員的學習成本。npm
基於 Koa 開發,性能優異。api
三、基於eggjs的 restful api示例跨域
https://github.com/MengFangui/eggjs-apirestful
四、跨域的解決cors
(1)安裝依賴包框架
npm i egg-cors --save or yarn add egg-cors
(2)在plugin.js中設置開啓corsdom
'use strict'; /** @type Egg.EggPlugin */ module.exports = { // had enabled by egg
// static: {
// enable: true,
// }
cors: { enable: true, package: 'egg-cors', }, };
(3)在config.default.js中配置
config.security = { csrf: { enable: false, ignoreJSON: true, }, domainWhiteList: [ 'http://localhost:8080' ], }; config.cors = { origin: '*', // 匹配規則 域名+端口 *則爲全匹配
allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH', };
說明須要配置security ,否則會報403權限錯誤。