如何清除react-native中的导航历史记录

kun*_*lee 5 reactjs react-native

我在我的反应本机应用程序中创建了一个登录/注册页面...我想阻止用户在成功登录后返回该页面

在 NativeScript 中,我通过在导航时设置clearHistory: true如何在 React-Native 中做到这一点来做到这一点

我的导航代码是这样的:

this.props.navigation.navigate('home screen', { email: email}
Run Code Online (Sandbox Code Playgroud)

谢谢

小智 10

如果你使用的话react-navigation有一个方法popToTop。这应该会清除您的导航堆栈,如果'home screen'不是您应用程序的第一个屏幕,您可以navigate稍后:

this.props.navigation.popToTop();
this.props.navigation.navigate('home screen', { email: email};
Run Code Online (Sandbox Code Playgroud)


kun*_*lee 6

这有效

navigation.replace('homescreen', {email : email})