打开应用程序时react-native-fcm不接收通知

时间:2018-07-01 17:48:47

标签: react-native push-notification react-native-fcm

打开应用程序后,为什么我不能收到来自react-native-fcm的通知?

这是我的有效载荷

const proState={};
       proState.notiUID=recKey;
        proState.notiPayload={
          data: {
            senderKey:senderKey,
            id: senderKey+':chat',
            type: 'chat'
          },
          notification: {
            title: proState.senderSnap.fullname,
            body: proState.lastmsg,
            sound: 'default',
            id: senderKey+':chat',
            tag : senderKey+':chat',
            priority : "high",
            data: senderKey
      },
        };


  const optionss = {
    priority: "high",
    show_in_foreground: true
};

return admin.messaging()
        .sendToTopic(proState.notiUID, proState.notiPayload,optionss)

我只会在最小化或关闭应用程序时收到通知

1 个答案:

答案 0 :(得分:0)

您在android和ios两个平台上都面临相同的问题吗?如果仅在ios中遇到此问题,请不要担心ios不会在前台收到通知。这是ios的默认行为。