关闭应用程序后,通过Ionic本地通知打开特定屏幕

时间:2019-03-12 06:49:42

标签: android ionic-framework localnotification

单击本地通知时,我试图打开应用程序的特定屏幕,当应用程序在后台运行时,以下给出的代码有效。但是,当应用程序完全关闭时,则无法在后台运行。有没有执行此操作的特定方法。

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

0 个答案:

没有答案