我正在研究本机应用程序。
因为我实施了反应原生天赋的信使进行聊天。
我的问题是:
点击通知后,我正在重定向到聊天页面,因为点击我写的时候有一个后退按钮:
this.props.navigator.pop();
但是当我点击时,我的屏幕没有弹出,也没有回到屏幕。
以下是我收到通知时的代码:
onNotification:(notification)=>{
console.log( 'NOTIFICATION:',notification);
if(this.state.appstate =='background'){
this.props.navigator.push({
component:Chat,
passProps:{fromUserId:userId,toUserId:oponentUserId}
})
}
}
可以采取哪些措施来解决这个问题?