react axios 调用put请求后,请求成功和失败的提示在哪里配置
时间: 2024-03-12 07:44:26 浏览: 119
react + ts or vue + ts 通用axios封装的方法。
5星 · 资源好评率100%
在React中使用Axios调用PUT请求后,请求成功和失败的提示可以在Axios的.then()和.catch()方法中进行配置。例如:
```
import axios from 'axios';
axios.put('/api/user', { name: 'John' })
.then(function (response) {
// 请求成功时的提示
console.log('PUT请求成功', response);
})
.catch(function (error) {
// 请求失败时的提示
console.log('PUT请求失败', error);
});
```
在.then()方法中,可以通过console.log()或者使用第三方库如Toast来进行成功提示;在.catch()方法中,可以通过console.log()或者使用第三方库如Modal来进行失败提示。
阅读全文