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

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

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

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

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

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

猜你在找的React相关文章