2017-03-08 58 views
1

我總是收到第二個對象的通知。沒有收到第一個對象的通知。我正在使用本地通知插件:https://ionicframework.com/docs/v2/native/local-notifications/來自離子本機。 任何幫助將是偉大的。在離子2中調度多個延遲的本地通知

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

新日期它只適用( 「2017-03-08T10:35:00」)給出了週三2017年3月8日16時20分○○秒GMT + 0545(尼泊爾標準時間) 。那麼,我沒有得到正確的時間。我刪除了「T」,工作正常。 –

回答

0

你好找你的幸運 我使用的離子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", 

     }] 
+1

歡迎來到SO。請閱讀此[如何回答](http://stackoverflow.com/help/how-to-answer)以提供高質量的答案。 – thewaywewere