我正在尝试使用我在 github 找到的 LocalNotification 插件每天从我的应用程序发送通知。我有以下代码,它会在应用程序启动后立即发送通知。
var notification = cordova.require("cordova/plugin/localNotification");
document.addEventListener('deviceready', onDeviceReady, false);
function onDeviceReady() {
alert('device ready');
var id = 0;
id++;
newDate = new Date();
newDate.setUTCHours(1,30,1);
notification.add({
id : id,
date : newDate,
message : "Your message here",
subtitle: "Your subtitle here",
ticker : "Ticker text here",
repeatDaily : true
});
}
但我希望应用程序在不打开的情况下自动发送通知。将选项 repeatDaily 设置为 true 会有帮助吗?
我进行了研究,发现其他人能够使用 LocalNotification 插件来实现它。
我不太确定如何测试,因为它需要我将 AVD 保持开机一整天。目标很简单。我需要每天向用户发送一个通知,而无需打开应用程序。任何帮助将不胜感激!谢谢 !!