Sentry Answers>React>

setState is an Asynchronous Function

setState is an Asynchronous Function

Evan Hicks

The ProblemJump To Solution

To update the state of a component, you use the setState method. However it is easy to forget that the setState method is asynchronous, causing tricky to debug issues in your code. The setState function also does not return a Promise. Using async/await or anything similar will not work.

Click to Copy
handleButtonClicked = evt => { this.setState({name: evt.currentTarget.value}) this.props.callback(this.state.name) // Will send the old value for name }

The Solution

When the state is actually set can vary. Usually it happens on the next render, but it can sometimes be batched for performance. The setState function takes an optional callback parameter that can be used to make updates after the state is changed.

Click to Copy
handleButtonClicked = evt => { this.setState({name: evt.currentTarget.value}, () => { this.props.callback(this.state.name) }) }

This function will get called once the state has been updated, and the callback will receive the updated value of the state.

Further Reading

If you’re looking to get a deeper understanding of how JavaScript error reporting works, take a look at the following articles:

  • Syntax.fmReact Server Components
  • Sentry BlogFixing memoization-breaking re-renders in React
  • Syntax.fm logo
    Listen to the Syntax Podcast

    Tasty Treats for Web Developers brought to you by Sentry. Web development tips and tricks hosted by Wes Bos and Scott Tolinski

    Listen to Syntax

Loved by over 4 million developers and more than 90,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.