dalao 跨域请求怎么处理啊
9***@qq.com
- 发布:2024-03-13 18:02
- 更新:2024-03-25 15:30
- 阅读:200
3 个回复
喜欢技术的前端 - QQ---445849201
接口请求跨域,本地开发,可以在manifest.json 中 做proxy代理,线上让服务端做个nginx 代理
y***@jiayuxiangmei.com
"h5" : {
"template" : "index.html",
"title" : "网站标题",
"devServer" : {
"proxy" : {
"/dpc" : {
"target" : "https://www.test.com",
"changeOrigin" : true,
"secure" : false,
"pathRewrite" : {
"^/dpc" : ""
}
}
},
"https" : true
}
}
不会游泳的鱼灬
https://uniapp.dcloud.net.cn/collocation/manifest.html#devserver
你看着这个文章是否能解决你说的问题