- 检查vite.config的proxy配置
server: {
strictPort: true,
proxy: {
'/base': {
target: env.VITE_BASE_API_PREFIX,
changeOrigin: true,
rewrite: path => path.replace(/^\/base/, '')
}
}
}
- 检查axios的配置
- baseURL不要带绝对路径
axios.create({
// 联调
baseURL: '',
})
- 请求时,接口不要写死路径
axios.post('/base/api')