我正在使用sencha touch,现在我想在我的项目中使用本地通知,所以我使用此插件进行本地通知。
https://github.com/katzer/cordova-plugin-local-notifications
我面临的问题只是我无法在特定的时间和日期显示我的通知。当我点击操作按钮时它立即显示通知,所以请帮我解决这个问题。
答案 0 :(得分:0)
以下示例应该有效。我亲自测试过。请注意,如果根据您的手机过去的日期,则会在您设置通知后直接弹出通知。
var beginTime = new Date('2016', '0', '12', '12', '45');
//year
//month - 1 (month starts at 0 so you have 0-11)
//day
//hour
//minutes
cordova.plugins.notification.local.schedule({
id: 1,
title: 'Hello World',
text: 'My first notification',
at: beginTime
})