我正在使用react-native-push-notifications npm库在我的应用程序中实现通知功能。但是,我想在特定时间5分钟前安排通知,我正在使用PushNotification。localNotificationSchedule,所以如何实现这个请帮助,提前感谢!
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, });
1条答案
按热度按时间s3fp2yjn1#
此代码计划在2023年1月21日下午4:00前5分钟发出通知。