yulimchen / vue3-h5-template

🌱 A ready-to-use mobile project base template built with the Vue3, Vant, and Vite. | 基于 Vue3、Vite5、TypeScript/JavaScript、Tailwindcss、Vant4,开箱即用的移动端项目基础模板
https://yulimchen.github.io/vue3-h5-template/
MIT License
1.06k stars 255 forks source link

axios封装存在问题 #28

Closed Tron1234 closed 1 year ago

Tron1234 commented 1 year ago
image

如果Http.axiosConfigDefault使用的是Object.assign的话没次调用request,Http.axiosConfigDefault都会加入上一次请求的paramConfig,不断累加合并,需要改成这样const config = { ...Http.axiosConfigDefault, ...paramConfig },保证每次请求不会污染Http.axiosConfigDefault

yulimchen commented 1 year ago

感谢指出,已修复