React那些年, 踩过的一些坑(连载中...)

前端之家收集整理的这篇文章主要介绍了React那些年, 踩过的一些坑(连载中...)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

React 组件构造函数: super(props) vs super()

曾经以为以下两种写法,没什么大区别,其实这个坑深着呢

constructor(props) {
    super();
    this.state = this.initData(this.props);

@H_403_8@constructor(props) { super(props); this.state = this.initData(this.props); 原文链接:https://www.f2er.com/react/302729.html

猜你在找的React相关文章