目前用的 axios 做异步请求,挺好用的,但是请求逻辑复杂的时候总是 return 一个新的 axios,代码一长,写起来有点痛苦。
有没经验丰富的大佬指点一下。
axios.get('abc')
.then(res => {
// ...
return axios.get('def');
})
.then(res => {
// ...
})
.catch(err => console.log(err))
上面是现在的写法...