我正在尝试使用phonegap的local Notification Plugin提醒通知,它会在应用程序运行时发出通知,但我不知道如何配置它以在特定时间提醒插件。
以下是执行通知操作的功能:
plugins.localNotification.add({ date: new Date(), message: 'Test', id: 123 });
当我试图把:
date: new Date(12,09,09,2,00,00)
它没有显示任何警报。那么,我如何修改它以适应不同的日期?
答案 0 :(得分:0)
我使用Android mobiscroll DatePicker,它以这种形式返回日期时间:
yyyy-mm-ddThh:mm:ssZ.
所以,它与插件使用的形式不同... [有关如何升级插件以使用2.2检查this问题]
所以我尝试了这个解决方案来提醒特定日期的通知:
if (typeof plugins !== "undefined")
{
var RId = 0;
var rDate =new Date();
var RemDate = reminder_deadline.split("T")[0];
var RemTimeB = reminder_deadline.split("T")[1];
var RemTime = RemTimeB.split("Z")[0];
var RYear = RemDate.split("-")[0];
var RMonth = RemDate.split("-")[1];
var RMonth = RMonth-1;
var RDay = RemDate.split("-")[2];
var RHour = RemTime.split(":")[0];
var RMinute = RemTime.split(":")[1];
var RSecond = RemTime.split(":")[2];
alert(RYear+".."+RMonth+".."+RDay+".."+RHour+".."+RMinute+".."+RSecond);
rDate.setFullYear(RYear);
rDate.setMonth(RMonth);
rDate.setDate(RDay);
rDate.setHours(RHour);
rDate.setMinutes(RMinute);
rDate.setSeconds(RSecond);
plugins.localNotification
.add({
date: rDate,
message: reminder_name,
id: RId
});
}
RId++;
}
希望有所帮助:)