一些接口要代理到地址1
一些接口要代理到地址2
我配置了vue.config.js:
devServer: {
proxy: {
"/": {
target: "https://www.ylcx.online:442",
secure: true
},
"/proxy2": {
target: "https://www.ylcx.online:441",
secure: true
},
}
}
请求的地址我写的是:
url: "proxy2/company/getCompanyList",
期望请求的实际地址是:
https://new.ylcx.online:441/company/getCompanyList
为什么这样对应不上接口?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…