react-native-fcm ios无法在后台获取通知数据

时间:2017-12-16 18:04:09

标签: react-native react-native-fcm

我从C#代码发送通知

 {
        to: "fcm_token",
        notification: {
            body: "body test",
            title: "title test"
        }, 
       data:{
              body: "body test",
             title: "title test", 
             type="newentry"
        },
content_available:true
        }

我收到了关于ios的通知。我在FCM.on中执行某些操作(FCMEvent.Notification,notif => {method。

this.notificationListener = FCM.on(FCMEvent.Notification,async(notif)=> {方法仅在iOS应用程序处于前台而不是后台时调用。当打开从通知中点击的应用程序时,永远不会调用此方法。

0 个答案:

没有答案