Vue-如何使用axios实现同步请求嵌套方法

Vue-如何使用axios实现同步请求嵌套方法

axios.get('/userAll')
  .then( async response {
    console.log(response);
    //要同步这个方法
    await  axios.get('/user?ID=12345')
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      });
  })
  .catch(function (error) {
    console.log(error);
  });

你可能感兴趣的:(vue,axios同步请求,嵌套方法同步请求)