setState是异步处理,使用以下方式修改数据

    1. // Correct
    2. this.setState((state, props) => ({
    3. counter: state.counter + props.increment
    4. }));