我是phonegap应用程序的新手。我正在开发一个phonegap应用程序,我想添加提醒功能,无论是谷歌日历还是其他任何东西。我在6或7天内搜索这个,请让我知道我该怎么做。
答案 0 :(得分:0)
该示例显示了如何安排本地通知,该通知将在每天60秒后触发。
var d = new Date();
d.setHours(14);
window.plugin.notification.local.add({
id: 1,
title: 'Reminder',
message: 'Dont forget to buy some flowers.',
repeat: 'daily',
date: d
});