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 readingthis.state
right after callingsetState()
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.