当前位置:网站首页>CROS和JSONP配置
CROS和JSONP配置
2022-08-05 08:06:00 【cjx177187】
跨域
1.egg-cors框架提供了 egg-cors 插件来实现cors跨域请求。
//1.下载
cnpm i --save egg-cors
//2.开启插件
// config/plugin.js文件
cors:{
enable: true,
package: 'egg-cors',
}
//3.配置插件
// config/config.default.js文件
config.cors = {
origin: '*',
allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH'
}
//默认origin只支持一个域名或者*表示全部,如果想支持具体的多个指定域名可以如下设置:
config.cors = {
// origin: ['http://localhost'],
origin:function(ctx) { //设置允许来自指定域名请求
console.log(ctx);
const whiteList = ['http://www.baidu.com','http://www.hqyj.com'];
let url = ctx.request.header.origin;
if(whiteList.includes(url)){
return url;
}
return 'http://localhost' //默认允许本地请求可跨域
},
allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH'
};
//4.使用:
//router.js文件
router.get('/cors',controller.home.cors)
//home.js文件
async cors(){
this.ctx.body={ info:"这个接口可以通过跨域访问"}
}
5. 注意:跨域前端请求时需要携带跨域凭证,不然缓存会失效
前端网络请求时配置:
原生ajax:
xhr.withCredentials = true;
axios:
axios.post(url,{},{ withCredentials:true}).then((res)=>{})
后端配置:
config.cors = {
origin: '具体的ip和端口 不能写* ',
credentials:true
}
2.实现jsonp接口
//如果前端的参数中有cb=fn参数(jsonp接口参数),将会返回JSONP格式的数据,否则返回JSON格式的数据。
//1.配置:
// config/config.default.js文件
config.jsonp = {
callback: 'cb', // 识别 query 中的 `cb` 参数
limit: 100, // 函数名最长为 100 个字符
};
//2.写接口
// app/router.js
module.exports = app => {
const jsonp = app.jsonp();
app.router.get('/api/posts', jsonp, app.controller.posts.list);
};
也可以直接在jsonp方法中直接配置,功能一样:
//如果前端的参数中有cb=fn参数(jsonp接口参数),将会返回JSONP格式的数据,否则返回JSON格式的数据。
// app/router.js文件
module.exports = app => {
const jsonp = app.jsonp({
callback: 'cb',
limit: 100,
});
app.router.get('/api/posts', jsonp, app.controller.posts.list);
};
边栏推荐
- 力扣每日一题
- Green Apple Forum reopens
- 监听浏览器刷新操作
- 力扣刷题八月第一天
- Basic introduction of stack and queue and C language implementation of functions such as creation, destruction, entry and exit, counting the number of elements, viewing elements, etc., as well as stac
- Use of thread pool (combined with Future/Callable)
- 二叉树进阶复习1
- 图扑软件与华为云共同构建新型智慧工厂
- RedisTemplate: 报错template not initialized; call afterPropertiesSet() before using it
- Adb authorization process analysis
猜你喜欢
随机推荐
P1160 队列安排
TRACE32——通用寄存器查看与修改
【每日一题】1403. 非递增顺序的最小子序列
Embedded Systems: Basic Timers
C语言制作-QQ聊天室
微信 小程序 之PC端 不支持 wx.previewMedia 方法 故用自定义轮播图进行 模拟照片视频的播放
作为一个男人必须明白的22个道理
Unity—物理引擎+“武器模块”
学习机赛道加速:请“卷”产品,不要“卷”营销
外企Office常用英语
SVG星球大战样式Toggle切换开关按钮
TRACE32——加载符号表信息用于调试
busybox 知:构建
软件系统测试和验收测试有什么联系与区别?专业软件测试方案推荐
向美国人学习“如何快乐”
unity 头发的渲染
The magic weapon for small entrepreneurs!
Support touch screen slider carousel plugin
本地能ping通虚拟机,虚拟机ping不通本地
Use of thread pool (combined with Future/Callable)








