react类组件中setState更新状态的2种写法

方法1:对象式的setState

setState(stateChange, [callback])------对象式的setState
	1.stateChange为状态改变对象(该对象可以体现出状态的更改)
	2.callback是可选的回调函数, 它在状态更新完毕、界面也更新后(render调用后)才被调用
import React, {Component} from 'react';

export default class Demo extends Component {

    state = {count: 0}
    //更新状态
    add = () => {
        //方式1: 对象式的setState
         const {count} = this.state;
         this.setState({count: count + 1},()=>{
                console.log('输出',this.state.count);
            });
        //console.log('输出', this.state.count);
    }

    render() {
        return (
            <div>
                <h1>当前和为:{this.state.count}</h1>
                <button onClick={this.add}>点我+1</button>
            </div>
        )
    }
}

方法2:函数式的setState

 setState(updater, [callback])------函数式的setState
        1.updater为返回stateChange对象的函数。
        2.updater可以接收到state和props。
        3.callback是可选的回调函数, 它在状态更新、界面也更新后(render调用后)才被调用。
import React, {Component} from 'react';

export default class Demo extends Component {

    state = {count: 0}
    //更新状态
    add = () => {
        //方式2:函数式的setState
        this.setState((state, props) => {
            return {count: state.count + 1}
        }, () => {
            console.log('输出', this.state.count);
        })
        //console.log('输出', this.state.count);
    }

    render() {
        return (
            <div>
                <h1>当前和为:{this.state.count}</h1>
                <button onClick={this.add}>点我+1</button>
            </div>
        )
    }
}

console.log('输出', this.state.count);写在this.setState语句后的打印结果:
在这里插入图片描述

console.log('输出', this.state.count);写在setState中的回调函数时的打印结果:
在这里插入图片描述

总结:
1.对象式的setState是函数式的setState的简写方式(语法糖)
2.使用原则:
	(1).如果新状态不依赖于原状态 ===> 使用对象方式
	(2).如果新状态依赖于原状态 ===> 使用函数方式
	(3).如果需要在setState()执行后获取最新的状态数据, 要在第二个callback函数中读取
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值