Skip to content
Advertisement

My browser sends fetch data request continuously and it gives pending status after giving 200 several times in react

I’m trying post some data in mongodb database and it works perfectly until the fetch request is sending continuously even if I didn’t do anything. In the network tab, it shows 200 status firstly but then pending and gives error.

JavaScript

The error is giving after adding the following code:

JavaScript

The following error occurs:

JavaScript

Note: The server side is okay and working without any error

Advertisement

Answer

When fetching apis in react, you should use useEffect or useLayoutEffect. See useEffect or useLayoutEffect

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement