【发布时间】:2014-06-23 17:00:28
【问题描述】:
在https://github.com/katzer/cordova-plugin-local-notifications开发的phonegap插件中 如果我想安排每天14:00通知,paras应该如何设置?我应该为约会写什么?
window.plugin.notification.local.add({
id: String, // A unique id of the notifiction
date: Date, // This expects a date object
message: String, // The message that is displayed
title: String, // The title of the message
repeat: String, // Either 'secondly', 'minutely', 'hourly', 'daily', 'weekly', 'monthly' or 'yearly'
badge: Number, // Displays number badge to notification
sound: String, // A sound to be played
json: String, // Data to be passed through the notification
autoCancel: Boolean, // Setting this flag and the notification is automatically canceled when the user clicks it
ongoing: Boolean, // Prevent clearing of notification (Android only)
}, callback, scope);
谢谢 锤子
【问题讨论】: