我正在使用Firebase在react native中处理计划的本地推送通知。我已经在特定时间成功生成了这样的通知:
firebase.notifications().scheduleNotification(this.buildNotification(), {
fireDate: notificationTime.valueOf(), //a specific date is set using a datetimepicker
repeatInterval: "minute",
exact: true
});
我的问题是如何在scheduleNotification()
中设置多个提醒?在react-native-firebase中有可能吗?
答案 0 :(得分:2)
是的,在react-native-firebase中是可能的
在您的buildNotification中
buildNotification = (notificationId) => {
const notification = new firebase.notifications.Notification()
.setNotificationId(notificationId) --> set here different id
return notification;
};
repeatInterval:“天”,
应多久重复一次通知。一分钟 小时,天或周。
如果不存在,则通知将显示一次。