Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 19, 2022 08:17 pm GMT

How to do a delete request in react

Before check to make sure your backend is set up correctly before starting. Meaning your routes has a destroy route and the controller has the method.

Make a function that every single time it's run fetches and deletes the object you want delete. So in my case I call it deletePost with the parameters of postId. That way it will match whatever route that is has the corresponding postId.

Image description

Make a button that has an onClick with an anonymous function that takes in the function you just made and past through the data needed for the function. So in my situation it was a post.Id.

Image description


Original Link: https://dev.to/yasin162/how-to-do-a-delete-request-in-react-1lf7

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To