📅  最后修改于: 2022-03-11 14:58:47.247000             🧑  作者: Mango
componentDidMount() {
// Simple PUT request with a JSON body using axios
const article = { title: 'React PUT Request Example' };
axios.put('https://reqres.in/api/articles/1', article)
.then(response => this.setState({ updatedAt: response.data.updatedAt }));
}