离子本地通知有时不会触发,或者不会触发其他时间。有时会在设定时间之前触发。
我正面临另一种情况
当计划通知设置为5分钟且应用程序在后台运行时。然后有时通知会在结束时间之前随机触发,例如(4分钟或4.5分钟)
当计划通知设置为5分钟并且该应用程序在后台运行时。然后有时会触发通知,但有时却不会。
下面是我的代码
this.triggerDate = new Date(this.myDate.setSeconds(this.myDate.getSeconds() + 300));
this.localNotifications.schedule({
id: 1,
title: 'mylimit',
text: 'Please provide eat enjoyment and guilt experience' + new Date(this.triggerDate),
smallIcon: 'resources/icon.png',
data: { "mydata": this.stateType, "createdTime": this.myDate },
trigger: {at: new Date(this.triggerDate)},
});