当前位置:网站首页>跨域问题解决方式 代理服务器
跨域问题解决方式 代理服务器
2022-08-04 00:05:00 【阿狸lyinshaofeng】
// const { defineConfig } = require('@vue/cli-service')
// module.exports = defineConfig({
// transpileDependencies: true
// })
// 跨域问题最常用的解决方法jsonp (可以解决get方式的跨域问题)
module.exports = { // 抛出模块
devServer:{ // 配置开发环境
proxy:{ // 代理服务
"/v1":{ // 匹配请求字符串
target:"https://m.mi.com/", // 要伪装成的服务器
changeOrigin:true, // 是否允许跨域
onProxyReq(proxyReq){
// 配置请求头信息
proxyReq.setHeader("referer","https://m.mi.com/")
}
}
}
}
}
边栏推荐
猜你喜欢
随机推荐
北京电竞元宇宙论坛活动顺利召开
"Miscellaneous" barcode by Excel as a string
高斯推断推导
internship:编写excel表的上传方法(导入)
LYVE1抗体丨Relia Tech LYVE1抗体解决方案
图论-虚拟节点分层建图
全球首款量产,获定点最多!这家AVP Tier1如何实现领跑?
The super perfect layout has shortcut keys and background replacement
分子个数 数论(欧拉函数 前缀和
【并发编程】ReentrantLock的lockInterruptibly()方法源码分析
汉字风格迁移---结合本地和全局特征学习的中文字体迁移
Sqlnet. Ora file with the connection of authentication test
HNUCM 2022年暑假ACM搜索专项练习
迭代扩展卡尔曼滤波IEKF
POE交换机全方位解读(上)
扩展卡尔曼滤波EKF
Creo9.0 绘制中心线
Shell 用法梳理总结
Apple told Qualcomm: I bought a new campus for $445 million and may plan to speed up self-development of baseband chips
详谈RDMA技术原理和三种实现方式