axios的then中怎么调用axios
时间: 2024-01-26 08:14:00 浏览: 181
在vue组件中使用axios的方法
在axios的then方法中调用axios,可以通过将axios请求封装成一个函数,然后在then方法中调用该函数。具体的代码如下所示:
```javascript
function fetchData() {
return axios.get('/user?ID=12345');
}
axios.get('/user?ID=12345')
.then(function(response) {
console.log(response);
return fetchData(); // 在then方法中调用axios请求
})
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});
```
在上述代码中,我们首先定义了一个fetchData函数,该函数用于发送axios请求。然后,在第一个then方法中,我们调用了fetchData函数,并在第二个then方法中打印了第二次请求的响应结果。
阅读全文