Phonegap 重复后台本地通知

Phonegap repeating background local notifications

This Phonegap plugin provides a neat way to schedule repeating background local notifications - at least on Android. The bit of the documentation 我不明白的是这个- every 属性可以是字符串或数字。我想设置以 10 分钟为间隔重复的本地通知。我想我会尝试 every:600

var dd = new Date();
cordova.plugins.notification.local.schedule({
text: "Delayed Notification",
firstAt: dd,
every: 600}, localNote);

其中

function localNote(){navigator.notification.beep(2);}

但是,这不起作用 - OTH every:"minute" 发出微小的哔哔声。如果有人能告诉我我在这里做错了什么,我将不胜感激。

仔细研究代码,我发现如果你传入一个数字,他们会将其乘以 60000,所以我假设他们希望你以分钟的形式传入数字,请尝试传入 10。实际上,文档还说明了这一点:

That can be a value of minutes or one of second, minute, hour, day, week, month or year

我说的代码在这里:parseInterval.

希望对您有所帮助。