Skip to content
Advertisement

Calling setState in a loop only updates state 1 time

Is there a reason that calling setSate() in a loop would prevent it from updating the state multiple times?

I have a very basic jsbin that highlights the problem I am seeing. There are two buttons. One updates the state’s counter by 1. The other calls the underlying function of One in a loop — which seemingly would update the state multiple times.

I know of several solutions to this problem but I want to make sure that I am understanding the underlying mechanism here first. Why can’t setState be called in a loop? Do I have it coded awkwardly that is preventing the desired effect?

Advertisement

Answer

From the React Docs:

setState() enqueues changes to the component state and tells React that this component and its children need to be re-rendered with the updated state. This is the primary method you use to update the user interface in response to event handlers and server responses.

Think of setState() as a request rather than an immediate command to update the component. For better perceived performance, React may delay it, and then update several components in a single pass. React does not guarantee that the state changes are applied immediately.

setState() does not always immediately update the component. It may batch or defer the update until later. This makes reading this.state right after calling setState() a potential pitfall.

Basically, don’t call setState in a loop. What’s happening here is exactly what the docs are referring to: this.state is returning the previous value, as the pending state update has not been applied yet.

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