离线2本地通知在应用关闭时不工作

问题描述:

我正在使用离子2本地通知。当我从后台移除应用程序时,本地通知无法正常工作。离线2本地通知在应用关闭时不工作

这是示例代码

this.localNotifications.schedule({ 
     text: 'Delayed ILocalNotification', 
     every:'minute', 
     at: new Date(new Date().getTime() + 60000), 
     led: 'FF0000', 
     sound: null 
    }); 

试试这个推送通知。 https://ionicframework.com/docs/native/push/

本地通知需要应用程序在后台运行。