2

 PushNotification.configure({
    onNotification: function(notification) {
      console.log( 'NOTIFICATION:', notification);
},
}) 

当我点击它时从服务器收到通知,应用程序已打开,但从未调用过 onNotification。 我把它放在 App.js 中的 componentDidMount() 和构造函数中,但它从来没有被调用过..帮助..

4

1 回答 1

1

您是否将所需的代码添加到 AndroidManifest.xml 中?

例如 :

<!--more stuff above-->
<service android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationListenerService"
  android:exported="false" >
  <intent-filter>
    <action android:name="com.google.android.c2dm.intent.RECEIVE" />
  </intent-filter>
</service>

来源:https ://github.com/zo0r/react-native-push-notification

于 2018-07-09T06:50:15.140 回答