打赏

axios 处理并发请求

//同时发起多个请求时的处理
axios.all([get1(), get2()])
  .then(axios.spread(function (res1, res2) {
    // 只有两个请求都完成才会成功,否则会被catch捕获
  }));

 

posted @ 2018-06-18 14:42  孟繁贵  阅读(2907)  评论(0编辑  收藏  举报
TOP