当前位置:网站首页>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);
};
边栏推荐
猜你喜欢
TRACE32——Go.direct
Chapter 12 贝叶斯网络
每月稳定干2万
TRACE32——加载符号表信息用于调试
【 LeetCode 】 235. A binary search tree in recent common ancestor
[Structure internal power practice] Structure memory alignment (1)
链表专项之环形链表
SVG Star Wars Style Toggle Toggle Button
SVG大鱼吃小鱼动画js特效
[Structural Internal Power Cultivation] The Mystery of Enumeration and Union (3)
随机推荐
D2--FPGA SPI interface communication2022-08-03
DataFrame在指定位置插入行和列
在原有数据库基础上执行sql文件有则跳过没有则添加如何实现?
Fiddler工具讲解
作为一个男人必须明白的22个道理
VXE-Table融合多语言
在ASP控制数字及字母输入
props 后面的数据流是什么?
[Structural Internal Power Cultivation] Structural Realization Stages (2)
【结构体内功修炼】结构体内存对齐(一)
执子之手,与子偕老。你同意么?
向美国人学习“如何快乐”
外企Office常用英语
Redis缓存以及存在的问题--缓存穿透、缓存雪崩、缓存击穿及解决方法
TRACE32——Go.direct
TRACE32——C源码关联1
力扣刷题八月第一天
Illegal key size 报错问题
uniapp time component encapsulates year-month-day-hour-minute-second
Embedded Systems: Basic Timers