构造函数在React Native中只调用一次

时间:2017-10-20 05:58:37

标签: android react-native navigation

您好我是React原生的新手,我使用Stack Navigation进行导航,我想知道当我从屏幕2返回到屏幕1时没有再次调用构造函数的原因。有什么方法可以做到这一点吗?

这是屏幕1的构造函数:

constructor(props) {
    super(props);
    alert("Hello Constructor");
}

这是我必须回到屏幕1的按钮

  <Button
          onPress={() => goBack()}
          title="Go back from this HomeScreen"
        />

0 个答案:

没有答案