react-native 应用程序检查本地存储是否有 auth 令牌,如果令牌可用,应用程序将导航到主页,但应用程序在尝试调用时崩溃this.props.navigator.push
。这仅在应用程序冷启动时发生(从后台启动时按预期工作)
AsyncStorageHelper.getUserToken().then((userToken)=>{
if (userToken !== null) {
this.props.navigator.push({
component: MainPage
});
} else {
this.showLoginControls();
}
})
componentDidMount()
在Method上调用以下代码
编辑
另请注意,应用程序仅在发布版本上崩溃,因此无法获取崩溃的堆栈跟踪。