axios一个异步依赖另一个异步

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一个异步依赖另一个异步)