热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

react为什么生命周期中的批量setState时isBatchingUpdates为false?

描述

描述


1
react




1
setState

是异步的,这样可以批量更新,不至于每次

1
setState

都进行新的




1
render


但是在调试代码时发现,在

1
componentDidMount

中多次进行

1
setState

,结果也是批量的,但是

1
isBatchingUpdates

却为

1
false


而在事件中触发的

1
setState

1
isBatchingUpdates

却是为

1
true


这是为什么呢,为什么生命周期中的没使用批量更新标志,它是如何实现的呢?

测试代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
componentDidMount() {

    this.setState({ count: this.state.count + 1 });

    console.log(this.state.count);

    this.setState({ count: this.state.count + 1 });

    console.log(this.state.count);

}



OnClickBtn= () => {

     this.setState({ count: this.state.count + 1 });

     console.log(this.state.count);

     this.setState({ count: this.state.count + 1 });

     console.log(this.state.count);

}



render() {

    console.log("render", this.state.count);

    return (

     



        test batchupdates

       

     



    );

  }



   



推荐阅读
author-avatar
手机用户2502861125
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有