单击本地通知时,我试图打开应用程序的特定屏幕,当应用程序在后台运行时,以下给出的代码有效。但是,当应用程序完全关闭时,则无法在后台运行。有没有执行此操作的特定方法。
this.localNotification.on('click', (notification, event) => {
console.log("Opened1");
localStorage.setItem('isNotification','1');
if(localStorage.getItem('isNotification')=='1'){
console.log("Opened2");
this.appCtrl.getRootNav().push(SalePage,{'field':notification.data.sale,'field':notification.data.field1,'pn':notification.data.pn});
}
});