正常配置是这样能获取数据:
proxyTable: {
'/goods': {
target: 'http://192.168.0.230:82/',
changeOrigin: true,
pathRewrite: {
'^/goods': '/goods'
}
}
但是我的goods不是唯一的,会变;我改成"/","*"都不行
proxyTable: {
'/': {
target: 'http://192.168.0.230:82/',
changeOrigin: true,
pathRewrite: {
'^/': '/'
}
}
proxyTable: {
'*': {
target: 'http://192.168.0.230:82/',
changeOrigin: true,
pathRewrite: {
'^/': '/'
}
}
应该怎么配置?
然后请求接口的时候就 axios.get('/api/goods/...'),把你的接口前面都加一个api就能统一