我想要实现的目标
我希望能够在特定时间每天向设备发送通知。示例:应在每天当地时间下午3点通知用户。
到目前为止我做了什么
receivedEvent: function(id) {
var notify = new Date();
notify.setHours(15,00,00,00);
window.plugin.notification.local.add({
id : 1,
message : "please read your first verse of the day",
title: "Verse 1",
repeat: "daily",
date: notify,
autoCancel: true
});
};
问题是什么:
通知显示在下午3点,每次我启动应用程序后,通知都会在启动时显示。此外,通知不会每天重复。
答案 0 :(得分:0)
修正了它。不再是问题。我只是将代码放在一个if语句中,该语句允许其中的代码仅在第一次加载应用程序时执行。