9***@qq.com
9***@qq.com
  • 发布:2024-03-13 18:02
  • 更新:2024-03-25 15:30
  • 阅读:200

大佬大佬大佬

分类:uni-app

dalao 跨域请求怎么处理啊

2024-03-13 18:02 负责人:无 分享
已邀请:
喜欢技术的前端

喜欢技术的前端 - QQ---445849201

接口请求跨域,本地开发,可以在manifest.json 中 做proxy代理,线上让服务端做个nginx 代理

"h5" : {  
        "router" : {  
            "base" : "./"  
        },  
        "devServer" : {  
            "https" : true,  
            "proxy" : {  
                "/api" : {  
                    "target" : "https://api.xxx.com/",  
                    "changeOrigin" : true,  
                    "secure" : false,  
                    "pathRewrite" : {  
                        "^/api" : ""  
                    }  
                }  
            }  
        },  

    }
y***@jiayuxiangmei.com

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
你看着这个文章是否能解决你说的问题

要回复问题请先登录注册