导航器this.props.navigator.pop不起作用,React Native

时间:2016-12-06 05:20:53

标签: reactjs react-native react-native-android

我正在研究本机应用程序。

因为我实施了反应原生天赋的信使进行聊天。

我的问题是:

  1. 我在后台,当用户发送消息时我收到推送通知。假设我收到10条消息。
  2. 点击通知后,我正在重定向到聊天页面,因为点击我写的时候有一个后退按钮:

    this.props.navigator.pop();

  3. 但是当我点击时,我的屏幕没有弹出,也没有回到屏幕。

  4. 以下是我收到通知时的代码:

        onNotification:(notification)=>{
          console.log( 'NOTIFICATION:',notification);
          if(this.state.appstate =='background'){
    
              this.props.navigator.push({
              component:Chat,
              passProps:{fromUserId:userId,toUserId:oponentUserId}
            })
    
            }
        }
    

    可以采取哪些措施来解决这个问题?

0 个答案:

没有答案