我将https://github.com/evollu/react-native-fcm与我的 react-native 应用程序一起用于推送通知。问题是每次将android应用程序从后台带到前台时都会调用下面显示的回调函数(即使服务器没有推送通知)
在 app.js 中的 componentDidMount-
FCM.on(FCMEvent.Notification, notif => {
console.log("FCMEvent.Notification: " + JSON.stringify(notif));
}