Answers for "axios in componentdidmount"

6

axios react

$ npm install react-axios
Posted by: Guest on September-14-2020
0

axios put api in componentDidMount React

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 }));
}
Posted by: Guest on June-14-2021

Code answers related to "axios in componentdidmount"

Browse Popular Code Answers by Language