在离子移动应用程序中相隔一小时安排两个本地通知

时间:2017-11-09 19:42:14

标签: ionic3 uilocalnotification localnotification

我必须在我的离子3移动应用程序中安排两个本地通知。这些通知需要彼此相隔1小时。例如:如果第一次通知在下午3:00发出,则第二次本地通知应在下午4:00发出。

有人可以建议一种方法来获取触发第一个通知的时间,这样我就可以加1小时并安排第二次通知。

提前致谢。 SKR

1 个答案:

答案 0 :(得分:0)

您可以在此处使用本地通知插件:

https://ionicframework.com/docs/native/local-notifications/

使用如下的计划方法:

this.localNotifications.schedule({
  id: 1,
  text: 'Single Immediate ILocalNotification',
  sound: isAndroid? 'file://sound.mp3': 'file://beep.caf',
  data: { secret:'hi' }
});

let originalTime = new Date().getTime();

// Schedule delayed notification (1 hour from original time)
this.localNotifications.schedule({
   id: 2,
   text: 'Delayed 1 hour ILocalNotification',
   at: new Date(originalTime + 3600000), // 3600000 is 1 hour in milliseconds
   sound: isAndroid? 'file://sound.mp3': 'file://beep.caf',
   data: { secret:'hi 1 hour later' }
});