【发布时间】:2017-07-28 13:44:47
【问题描述】:
我总是收到第二个对象的通知。未收到第一个对象的通知。我正在使用本地通知插件:来自 ionic native 的 https://ionicframework.com/docs/v2/native/local-notifications/。 任何帮助都会很棒。
LocalNotifications.schedule([{
id: 1,
text: 'Multi ILocalNotification 1',
at: new Date("2017-03-08T10:35:00")
}, {
id: 2,
title: 'Local ILocalNotification Example',
text: 'Multi ILocalNotification 2',
at: new Date("2017-03-08T10:40:00")
}]);
【问题讨论】:
-
new Date("2017-03-08T10:35:00") 给出了 2017 年 3 月 8 日星期三 16:20:00 GMT+0545(尼泊尔标准时间)。那么我没有得到正确的时间。我删除了“T”并且工作正常。
标签: angular ionic2 cordova-plugins localnotification