axios一个异步依赖另一个异步
2018-06-07 本文已影响0人
828a8863cef9
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 )
})