Chapter 11
- First, you have to call the REST API using the
fetch()
method. Then, you can access the response data using the promises with thefetch()
method. The data from the response is saved to the state and the component is re-rendered when the state changes. - You have to send a
DELETE
method request using thefetch()
method. The endpoint of the call is the link to the item that you want to delete. - You have to send a
POST
method request to the entity endpoint using thefetch()
method. The added item should be embedded in the body. You have to add theContent-Type
header with the application/json value. - You have to send a
PATCH
method request using thefetch()
method. The endpoint of the call is the link to the item that you want to update. The updated item should be embedded in the body. You have to add the Content-Type header with the application/json value. - You can use a third-party React component, such as MUI
SnackBar
, to show toast messages. - You can...