//webpack.config.js
proxy: {
'/drink': {
target: "http://xxx.26.xx.75:8010/channelFreeDrink/",
changeOrigin:true,
pathRewrite: {
'^/drink': ''
}
}
}
//api.js
const sourcelist = ()=>{
return new Promise((resolve,reject)=>{
// fetch(window.YY_API + '/channelFreeDrink/activity').then(res => {
fetch('/drink/activity').then(res => {
if(res.status==200) return res.json()
}).then(data=>{
resolve(data)
})
})
}
图中黄框跟黄框所对应(/drink),白框(/activity)在代理请求的时候会加在target所指的链接后面
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。