React-Native-Navigation摆脱了构造函数?

时间:2019-11-23 23:16:18

标签: reactjs react-native react-native-navigation

示例在react-native-navigation(不是react-navigation)中

constructor(props) {
  super(props);
  Navigation.events().bindComponent(this);
  this.state = {
    text: 'nothing yet'
  };
}

在这种情况下,有什么方法可以摆脱构造函数吗?

1 个答案:

答案 0 :(得分:0)

构造函数中实际上发生了三件事-调用超类构造函数,调用Navigation.events().bindComponent和初始状态。

如果没有构造函数,则仍将调用super构造函数,并且可以将状态初始化移到外部,如下所示:

  state = {
    text: 'nothing yet'
  };

但是,每当没有构造函数创建类的实例时,都没有好的方法来调用Navigation.events().bindComponent。因此,如果需要调用此函数,则需要一个构造函数。