JS
React JS

React Axios Delete Request Example

In this example, i will show you react axios delete request example. I am going to show you about axios delete request example in react js. you'll learn http delete request in react js.

  • 4.5/5.0
  • Last updated 08 September, 2022
  • By Admin

If you want to learn how to send http delete request with react then i will help you step by step instruction for sending http request using axios react. i will give you very simple example to send http delete request using axios and react.

Axios is a npm package and the provide to make http request from your application. in this example we will use "jsonplaceholder" api to delete data using axios package.

So, let's see bellow example code and preview:

Example Code:
import React from 'react';
import axios from 'axios';
export default class PostList extends React.Component {
  state = {
    posts: []
  }
  componentDidMount() {
    axios.get(`https://jsonplaceholder.typicode.com/posts`)
      .then(res => {
        const posts = res.data;
        this.setState({ posts });
      })
  }
  deleteRow(id, e){
    axios.delete(`https://jsonplaceholder.typicode.com/posts/${id}`)
      .then(res => {
        console.log(res);
        console.log(res.data);
        const posts = this.state.posts.filter(item => item.id !== id);
        this.setState({ posts });
      })
  }
  render() {
    return (
      <div>
        <h1>React Axios Delete Request Example - codewale.com</h1>
        <table className="table table-bordered">
            <thead>
              <tr>
                  <th>ID</th>
                  <th>Title</th>
                  <th>Body</th>
                  <th>Action</th>
              </tr>
            </thead>
            <tbody>
              {this.state.posts.map((post) => (
                <tr>
                  <td>{post.id}</td>
                  <td>{post.title}</td>
                  <td>{post.body}</td>
                  <td>
                    <button className="btn btn-danger" onClick={(e) => this.deleteRow(post.id, e)}>Delete</button>
                  </td>
                </tr>
              ))}
            </tbody>
        </table>
      </div>
    )
  }
}

I hope it can help you...