跨域:
解析後為:
總結:這裡把request.js中的
const baseURL = 'http://localhost:8080';
改為:
const baseURL = '/api';
並把vite.config.js加了:
server:{
proxy:{
'/api':{//獲取路徑中包含了/api的請求
target:'http://localhost:8080',//後臺服務所在的源
changeOrigin:true,//修改源
rewrite:(path)=>path.replace(/^\/api/,'')///api替換為''
}
}
}