Cordova 本地通知

Cordova Local Notification

您好,我正在开发一个程序。我在程序中集成了本地通知,但问题是我不能每天重复。

plugin

我使用了这个插件并在 index.js 中编写了这段代码以准备好设备。它工作正常但是当我第一次添加通知时它给出了错误。

cordova.plugins.notification.local.schedule({
        id: 1,           
        text: "Come and Evaluate your Friends!",
        firstAt: tomorrow_at_11_am,
        every: "day"
    });

firstAt:tomorrow_at_11_am 部分不工作。我该如何解决这个问题?

tomorrow_at_11_am

是一个变量。示例站点缺少此内容。看看这里的文档:

https://github.com/katzer/cordova-plugin-local-notifications/wiki/04.-Scheduling

在那里你可以找到:

at, firstAt (Date or Number)

The date and time when the system should deliver the local notification. If the specified value is nil or is a date in the past, the local notification is delivered immediately. - Default: now ~ new Date()