前端之家收集整理的这篇文章主要介绍了
React那些年, 踩过的一些坑(连载中...),
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_
301_0@React 组件构造
函数: super(props) vs super()
@H_
301_0@曾经以为以下两种写法,没什么大区别,其实这个坑深着呢
constructor(props) {
super();
this.state = this.initData(this.props);
constructor(props) {
super(props);
this.state = this.initData(this.props);