1. Two setState, how many times to call? As shown in the following code, there is a When a button is clicked, how many times will Answer: state = { count: 0 }; handleClick = () => { this.setState({ count: this.state.count + 1 }); this.setState({ count: this.state.count + 1 }); }; render() { console.log(`render`); return ( <> <div>Current count: {this.state.count}</div> <button onClick={this.handleClick}>add</button> </> ); } According to common sense, when the button is clicked for the first time, since Just run the above code in your browser: At the beginning, the page shows that the value of The reason is that React internally merges multiple This also explains why the final value of 2. Two setState, which one is called? But the above code does not verify which state = { count: 0 }; handleClick = () => { this.setState({ count: this.state.count + 1 }); this.setState({ count: this.state.count + 2 }); //Change to +2 }; render() { console.log(`render`); return ( <> <div>Current count: {this.state.count}</div> <button onClick={this.handleClick}>add</button> </> ); } Run it in the browser again: The results show that after clicking the button, the value of 3. Two setStates are placed in setTimeout? If we add a timer state = { count: 0 }; handleClick = () => { setTimeout(() => { this.setState({ count: this.state.count + 1 }); this.setState({ count: this.state.count + 2 }); }, 0); }; render() { console.log(`render`); return ( <> <div>Current count: {this.state.count}</div> <button onClick={this.handleClick}>add</button> </> ); } Running results: The results show that after clicking the button, the value of This is because calling 4. Conclusion Events used directly in React, such as React has a performance optimization mechanism for synthetic events and lifecycle functions. It will merge multiple If you bypass React's performance optimization mechanism and use This is the end of this article about how many times multiple setStates in React will be called. For more information about how many times multiple setStates in React will be called, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: select the best presets to create full compatibility with all browsersselect
>>: Theory: The two years of user experience
<template> <div id="root"> ...
Open the cpanel management backend, under the &qu...
Project Documentation Directory Div+CSS Naming Sta...
This article example shares the specific code of ...
When Mysql occupies too much CPU, where should we...
BackUpMysql.sh script #!/bin/bash PATH=/bin:/sbin...
<br />This is not only an era of information...
Preface In WeChat applet development (native wxml...
Inserting images into HTML requires HTML tags to ...
As we all know, there are two types of images in c...
This article introduces how to configure Nginx to...
State Hooks Examples: import { useState } from ...
Table of contents Why use Docker? Docker installa...
The establishment of MySQL index is very importan...
What? What star coat? Well, let’s look at the pic...