【发布时间】:2018-07-27 09:16:27
【问题描述】:
我刚刚查看了docs,但我尝试过的代码只能工作一次。
//this is my code
cordova.plugins.notification.local.schedule({
id: 1,
title: 'Attention',
text: 'Exmaple',
data: { mydata: 'My hidden message this is' },
actions: [
{ id: 'yes', title: 'Yes' },
{ id: 'no', title: 'No' }
],
trigger: { every: { hour: 11, minute: 0 } }//work only once
});
我也试过这个(只工作一次)
cordova.plugins.notification.local.schedule({
title: 'Design team meeting',
trigger: { in: 1, unit: 'hour' }
});
我希望每天在特定时间收到通知
与这个问题有关:
谢谢大家
【问题讨论】:
-
有人知道怎么解决吗?
-
你解决了吗?
-
不,我没有找到解决办法
标签: triggers ionic3 localnotification