super(props)、super()以及不写super的区别

1、如果你用到了constructor就必须写super(),是用来初始化this的,可以绑定事件到this上;

2、如果你在constructor中要使用this.props,就必须给super加参数:super(props);(无论有没有constructor,在render中this.props都是可以使用的,这是React自动附带的;)

3、如果没用到constructor,是可以不写的;React会默认添加一个空的constructor。

你可能感兴趣的:(super(props)、super()以及不写super的区别)