OneBite.Dev - Coding blog in a bite size

Call method only once in useEffect react

Be careful when using useEffect in React. it can bring unintentional behavior you don't want, like calling API multiple times

useEffect is part of hooks. Hooks are a new addition in React 16.8. They let you use state and other React features without writing a class. Be careful, it can bring unintentional behavior you don’t want.

useEffect will run multiple times

Based on FAQ section in useEffect docs Does useEffect run after every render? Yes! By default, it runs both after the first render and after every update. (We will later talk about how to customize this.) Instead of thinking in terms of “mounting” and “updating”, you might find it easier to think that effects happen “after render”. React guarantees the DOM has been updated by the time it runs the effects.

[Update] notes on React 18

Start from React 18, for “development mode only”, useEffect will run twice, regardless the trick we’ll see below.

Reason: “When Strict Mode is on, in development, React runs setup and cleanup one extra time before the actual setup.” source: Why useEffect run twice in development

Calling API problem in useEffect

If you need to call an API from useEffect, remember it will call it multiple times on every update. That’s why you need to stop this behavior by passing empty array in second argument like this

useEffect(() => {
        callingAPI()
    }, [])
react