[React] Pass a function to setState in React

In React, when you want to set the state which calculation depends on the current state, using an object can lead to state inconsistency. This is due to the fact that React can batch multiple state changes for performance reasons.

This lesson shows you how using a function in setState can solve that.

原文地址:https://www.cnblogs.com/Answer1215/p/8131677.html