代码之家  ›  专栏  ›  技术社区  ›  MJ007

使用Headless JS[关闭]响应本地通知

  •  1
  • MJ007  · 技术社区  · 7 年前

    我正在尝试用android的react native发送本地通知。通过谷歌搜索,我发现一种方法是使用无头JS,但有人知道它是如何实现的吗?我每天都需要在特定时间收到本地通知

    1 回复  |  直到 7 年前
        1
  •  1
  •   Jigar    7 年前

    您可以通过使用

    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
      });