我需要刷新同一页面使用导航抽屉



我需要刷新相同的屏幕,使用响应本机中的导航抽屉。我可以在导航其他屏幕时刷新屏幕。但我单击了相同的屏幕链接,我没有得到任何响应。我怎么做

你可以通过以下方法做到这一点,

在导航中添加一个参数(isFromHome(,

const navigateAction = NavigationActions.navigate({
      routeName: routeName,
      params: { isFromHome: true}
    });
    this.props.navigation.dispatch(navigateAction);

然后在类componentWillReceiveProps()中添加代码

例如:

componentWillReceiveProps(newProps) {
    console.log("#######", newProps.navigation.state.params.isFromHome);
    // Here you will get the parameter every time. By checking the parameter you can achieve your need.
  }

相关内容

  • 没有找到相关文章

最新更新