无法让 setBackgroundMessageHandler 工作

Dor*_*ord 7 android react-native react-native-firebase

react-native-firebase v6 中,我无法setBackgroundMessageHandler在我的应用程序中工作。收到通知很好,但不执行处理程序。

我已经按照指南做了,但无济于事。

import { AppRegistry } from 'react-native';
import messaging from '@react-native-firebase/messaging';
import AsyncStorage from '@react-native-community/async-storage';
import App from './App';
import { name as appName } from './app.json';

AppRegistry.registerComponent(appName, () => App);

messaging().setBackgroundMessageHandler(async ({ data: { title, message } }) => {
    console.log('in background');
    // Save the notification locally
    const notificationList = JSON.parse(await AsyncStorage.getItem('@SM_NOTIFICATIONS')) || [];
    notificationList.push({ title, message, isRead: false });
    await AsyncStorage.setItem('@SM_NOTIFICATIONS', JSON.stringify(notificationList));
});
Run Code Online (Sandbox Code Playgroud)

除了传入的通知之外什么也没发生。我希望代码将传入的通知保存在AsyncStorage.

Dor*_*ord 10

好的。在咨询了开发团队后,我终于弄明白了这个。

首先,setBackgroundMessageHandler必须在 之前调用registerComponent

其次,不要发送通知数据。只发送自定义数据(静默推送)。因此,您需要使用本地通知而不是推送通知来在系统托盘中显示通知。

因为 Firebase 控制台不知何故不支持静默推送,所以我使用FCM API v1仅发送数据。这是我的例子:

POST https://fcm.googleapis.com/v1/projects/my-project/messages:send

{
    "validate_only": false,
    "message": {
        "name": "XXX",
        "data": {
            "title": "BG 2",
            "message": "BG BARU"
        },
        "topic": "C3166"
    }
}
Run Code Online (Sandbox Code Playgroud)

如您所见,notification上面的 JSON 中没有字段。

  • 它已记录在案,请在[此处](https://rnfirebase.io/messaging/usage#background--quit-state-messages)查看。_要设置后台处理程序,请尽早在应用程序逻辑之外调用 setBackgroundMessageHandler。_ (2认同)