Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望后台监听器更新状态,就像 firebase 为我们提供消息()。setBackgroundMessageHandler。
一个信号版本
"react-native-onesignal": "^4.0.3",
大家好,我找到了解决方案只需使用以下代码: messaging().setBackgroundMessageHandler(async remoteMessage => { console.log('Message handled in the background!', remoteMessage); });
messaging().setBackgroundMessageHandler(async remoteMessage => { console.log('Message handled in the background!', remoteMessage); });
在此代码中,firebase 将负责并获取一个信号的背景通知。一个信号没有任何处理程序来获取本机反应中的后台通知。
我希望这个解决方案有效。