axios.get(url1).then(rsp => { // 第一个异步
//...
return axios.get(url2) //第一个异步成功调用成功,执行第二个异步
}).then(rsp => {
//...
return axios.get(url3)
}.then(rep => {
console.info(rep)
}).catch(error => {
console.info(error )
})
axios.get(url1).then(rsp => { // 第一个异步
//...
return axios.get(url2) //第一个异步成功调用成功,执行第二个异步
}).then(rsp => {
//...
return axios.get(url3)
}.then(rep => {
console.info(rep)
}).catch(error => {
console.info(error )
})
本文标题:axios一个异步依赖另一个异步
本文链接:https://www.haomeiwen.com/subject/ypbgsftx.html
网友评论