gpt4 book ai didi

javascript - 如何每天在特定时间在cordova中设置本地通知

转载 作者:行者123 更新时间:2023-11-30 00:26:14 27 4
gpt4 key购买 nike

我想使用 cordova 本地通知插件在每天早上 7:00 发出本地通知,但在文档中没有指定如何设置重复通知的时间

       $cordovaLocalNotification.schedule({
id: 3,
title: 'Warning',
text: 'Dont fall asleep',
every: 'minute'
}).then(function (result) {
console.log('Notification 3 triggered');
});

最佳答案

如果你使用的是cordova-plugin-local-notifications,我认为应该是:

var date = new Date()
date.setDate(date.getDate()+1);
date.setHours(7);
date.setMinutes(0);
date.setSeconds(0);
$cordovaLocalNotification.schedule({
id: 3,
title: 'Warning',
text: 'Dont fall asleep',
at: date,
every: 'day'
}).then(function (result) {
console.log('Notification 3 triggered');
});

这应该安排在第二天 7 点通知,每天都会重复,但我无法尝试,对不起。

关于javascript - 如何每天在特定时间在cordova中设置本地通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45333729/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com