如何发送带有图像的通知-react-native-firebase

时间:2019-01-02 09:58:49

标签: ios react-native firebase-cloud-messaging

我是新手RN,我在react-native-firebase发送通知方面遇到问题,我没有在寻找使用图像推送通知的解决方案。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

尝试...

        const notification = new firebase.notifications.Notification().setNotificationId('notificationId: ' + data.id).setTitle(data.title).setBody(data.body);
        notification.android.setChannelId('yourChannel').android.setSmallIcon('ic_notif').android.setBigPicture("your_image_url").android.setAutoCancel(true).android.setDefaults(firebase.notifications.Android.Defaults.All);
        firebase.notifications().displayNotification(notification);