1
我想在每天早上7:00使用科爾多瓦本地通知插件提供本地通知,但在文檔中未指定如何爲重複通知設置時間如何在特定時間每天在科多瓦設置本地通知
$cordovaLocalNotification.schedule({
id: 3,
title: 'Warning',
text: 'Dont fall asleep',
every: 'minute'
}).then(function (result) {
console.log('Notification 3 triggered');
});