如何进行嵌套 axios 调用?我需要将第一个axios调用的结果作为参数传递给第二个 axios
答案 0 :(得分:7)
你可以像正常的承诺一样链。触发第一个请求的.then
中的下一个请求,然后返回该承诺,以便您第二次请求.then
。
axios.get(...)
.then((response) => {
return axios.get(...); // using response.data
})
.then((response) => {
console.log('Response', response);
});