在离子2中安排多个延迟局部通知



我总是收到第二个对象的通知。未收到第一个对象的通知。我正在使用本地通知插件:https://ionicframework.com/docs/v2/native/local-notifications/来自Ionic Anitial。任何帮助都会很棒。

 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")
}]);

你好,你很幸运我使用的是离子2我只有1个本地通知,但是当手机锁定并且屏幕为黑色时,它不起作用。

它仅在手机醒着时起作用

let now = new Date();
    let time1=new Date();
    time1.setMinutes(now.getMinutes()+1) 
        this.timer=time1;
 this.localNotifications.schedule([{
            id:1,
            title: "test",
            text: "tester ?",
            at: time1,
            sound: "file://assets/sound/speed_camera.mp3",
        }]

相关内容

  • 没有找到相关文章

最新更新