从phonegap应用程序添加提醒

时间:2015-05-28 05:35:28

标签: android phonegap-plugins reminders

我是phonegap应用程序的新手。我正在开发一个phonegap应用程序,我想添加提醒功能,无论是谷歌日历还是其他任何东西。我在6或7天内搜索这个,请让我知道我该怎么做。

1 个答案:

答案 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
});

来源:https://stackoverflow.com/a/24371488/596952