使用EggJS开发接口允许跨域之egg-cors
Posted 每天都要进步一点点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用EggJS开发接口允许跨域之egg-cors相关的知识,希望对你有一定的参考价值。
用来允许前端进行跨域请求的一个插件
安装:
npm i egg-cors --save // 或 yarn add egg-cors
导入到egg项目里:
// 在config/plugin.js里面添加 exports.cors = { enable: true, package: ‘egg-cors‘, }; // 或者,在config/plugin.js的module.exports里面添加 module.exports = { cors: { enable: true, package: ‘egg-cors‘, } };
配置:
// 在config/config.default.js的module.exports里面添加 config.cors = { origin: ‘*‘, // 表示允许的源 allowMethods: ‘GET,HEAD,PUT,POST,DELETE,PATCH‘ // 表示允许的http请求方式 };
.
以上是关于使用EggJS开发接口允许跨域之egg-cors的主要内容,如果未能解决你的问题,请参考以下文章
Egg 中通过 Egg-cors 配置服务器端允许跨域以及 Cookie 允许跨域
Ajax跨域之ContentType为application/json请求失败的问题
Ajax跨域之ContentType为application/json请求失败的问题