使用 Headless JS 的 React-Native 本地通知
React-Native Local Notifications using Headless JS
我正尝试在 android 的 React Native 中发送本地通知。通过谷歌搜索,我看到一种方法是使用 Headless JS,但是有谁知道它是如何实现的呢?我需要每天特定时间的本地通知
您可以使用
实现此目的
https://github.com/zo0r/react-native-push-notification#scheduled-notifications
https://github.com/zo0r/react-native-push-notification#repeating-notifications
PushNotification.localNotificationSchedule({
message: "My Notification Message", // (required)
date: new Date(Date.now() + (60 * 1000)) // in 60 secs
});
编辑 1
PushNotification.localNotificationSchedule({
message: "My Notification Message",
date: new Date(fireDate),
repeatType: 'time',
repeatTime: 3600000
});
我正尝试在 android 的 React Native 中发送本地通知。通过谷歌搜索,我看到一种方法是使用 Headless JS,但是有谁知道它是如何实现的呢?我需要每天特定时间的本地通知
您可以使用
实现此目的https://github.com/zo0r/react-native-push-notification#scheduled-notifications
https://github.com/zo0r/react-native-push-notification#repeating-notifications
PushNotification.localNotificationSchedule({
message: "My Notification Message", // (required)
date: new Date(Date.now() + (60 * 1000)) // in 60 secs
});
编辑 1
PushNotification.localNotificationSchedule({
message: "My Notification Message",
date: new Date(fireDate),
repeatType: 'time',
repeatTime: 3600000
});