如何在react native中实现React native推送通知的计划本地通知

mdfafbf1  于 2023-01-27  发布在  React
关注(0)|答案(1)|浏览(243)

我正在使用react-native-push-notifications npm库在我的应用程序中实现通知功能。但是,我想在特定时间5分钟前安排通知,我正在使用PushNotification。localNotificationSchedule,所以如何实现这个请帮助,提前感谢!

s3fp2yjn

s3fp2yjn1#

此代码计划在2023年1月21日下午4:00前5分钟发出通知。

import PushNotification from 'react-native-push-notifications'

const time = new Date(2023, 1, 21, 16, 0, 0)
const fiveMinutesBefore = new Date(time.getTime() - 5 * 60 * 1000)

PushNotification.localNotificationSchedule({
  message: "Notification message",
  date: fiveMinutesBefore,
  repeatType: 'minute',
  repeatTime: 5,
  number: 1,
});

相关问题