I prepared small demo for the problem:
Demo
So I am using react-router-dom to create Single Page Application and I created standard navigation between two pages (components Page1 and Page2).
Problem is that every time I switch between pages then useEffect hook (with empty array as second argument) is called (on demo you can see it in console).
I would want to fetchData for each component only once and reuse that data after, no matter if user will switch between pages. Is there possibility to do it without checking some conditions inside useEffect function? It's a little confusing to me, because useEffect [] should run only once for component and it's not a case.
An empty deps array means that the useEffect
will only be called each time the component is mounted. The useEffect
is being called every time you change the page because the page component is being unmounted each time, then remounted when you visit it again. For example, try clicking the page 1 link twice. It will only log the message once, because the page is not being unmounted and remounted.
You could try to fix this problem by using the useEffect
a level higher than the page, which would be your app component, and call your fetch there instead. However, I'm not sure that can be done with a class component, so you might have to use a function component instead.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With