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
x
7
1
const [services, setServices] = useState([]);
2
const [treatment, setTreatment] = useState(null);
3
4
fetch('http://localhost:5000/services')
5
.then(res => res.json())
6
.then(data => setServices(data));
7
The error is giving after adding the following code:
JavaScript
1
22
22
1
const booking = {
2
treatmentId: _id,
3
treatment: name,
4
date: formattedDate,
5
slot,
6
patientEmail: user.email,
7
patient: user.displayName,
8
phone: e.target.mobile.value
9
}
10
11
fetch('http://localhost:5000/booking', {
12
method: 'POST',
13
headers: {
14
'content-type': 'application/json'
15
},
16
body: JSON.stringify(booking)
17
}).then(res => res.json())
18
.then(data => {
19
console.log(data, 'success');
20
toast('Appointment has been set!!!');
21
})
22
The following error occurs:
JavaScript
1
25
25
1
bundle.js:701 GET http://localhost:5000/services net::ERR_INSUFFICIENT_RESOURCES
2
AppointmentSchedules @ bundle.js:701
3
renderWithHooks @ bundle.js:53492
4
updateFunctionComponent @ bundle.js:57611
5
beginWork @ bundle.js:59578
6
beginWork$1 @ bundle.js:64465
7
performUnitOfWork @ bundle.js:63626
8
workLoopSync @ bundle.js:63539
9
renderRootSync @ bundle.js:63508
10
performConcurrentWorkOnRoot @ bundle.js:62805
11
workLoop @ bundle.js:75228
12
flushWork @ bundle.js:75202
13
performWorkUntilDeadline @ bundle.js:75486
14
bundle.js:701 Uncaught (in promise) TypeError: Failed to fetch
15
at AppointmentSchedules (bundle.js:701:3)
16
at renderWithHooks (bundle.js:53492:22)
17
at updateFunctionComponent (bundle.js:57611:28)
18
at beginWork (bundle.js:59578:20)
19
at beginWork$1 (bundle.js:64465:18)
20
at performUnitOfWork (bundle.js:63626:16)
21
at workLoopSync (bundle.js:63539:9)
22
at renderRootSync (bundle.js:63508:11)
23
at performConcurrentWorkOnRoot (bundle.js:62805:78)
24
at workLoop (bundle.js:75228:38)
25
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