导航导航抽屉时,React Native 不刷新屏幕

0 react-native react-navigation

我开发了一个使用导航抽屉的应用程序。导航屏幕使用导航抽屉。但导航时屏幕不刷新。我如何解决这个问题

小智 5

将以下代码添加到您的 componentDidMount()

componentDidMount() {
    this.subs = this.props.navigation.addListener("didFocus", () => {
      //Your logic, this listener will call when you open the class every time }
    );
  }
Run Code Online (Sandbox Code Playgroud)

并且不记得删除监听器componentWillUnmount()

componentWillUnmount() {
    this.subs.remove();
  }
Run Code Online (Sandbox Code Playgroud)