您好我正在开发一个程序。我将本地通知集成到程序中,但问题是我不能每天重复这样做。
我使用了这个插件,并在设备就绪的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部分无效。我该如何解决这个问题?
答案 0 :(得分:2)
tomorrow_at_11_am
是一个变量。示例站点缺少此功能。看看这里的文档:
https://github.com/katzer/cordova-plugin-local-notifications/wiki/04.-Scheduling
在那里你可以找到:
at,firstAt(日期或号码)
系统应交付本地的日期和时间 通知。如果指定的值为nil或者是过去的日期, 本地通知立即发送。 - 默认:现在〜新日期()