单击通知时转到特定页面

Go to a specific page when clicking on a notification

如何在点击通知时转到特定页面? 我使用 Firebase 控制台推送通知 我是这样用的但是没用

fcm.onNotification().subscribe(data=>{
  if(data.wasTapped){
this.navcntrl.push(MessagePage); 
  };
})

我怎样才能正确地做到这一点?

我的完整代码:app.component.ts

 export class MyApp {
      @ViewChild(Nav) nav: Nav;

      rootPage: any = HomePage;
      pages: Array<{title: string, component: any}>;
      constructor(public platform: Platform,private fcm: FCM, public statusBar: StatusBar, public splashScreen: SplashScreen) {

        fcm.onNotification().subscribe(data=>{
          this.nav.push(ListPage)
        })
        this.initializeApp();
        this.pages = [
          { title: 'Home', component: HomePage },
          { title: 'List', component: ListPage }
        ];

      }

      initializeApp() {
        this.platform.ready().then(() => {

          this.statusBar.styleDefault();
          this.splashScreen.hide();
        });
      }

      openPage(page) {

        this.nav.setRoot(page.component);
      }
    }

提前致谢

我解决了这个问题。 您必须将属性“click_action”:“FCM_PLUGIN_ACTIVITY”添加到“notification”对象中才能正确使用后台方法。

示例:

{
 "to" : "tokenHere",
 "notification" : {
     "title": "title",
     "body" : "message",
     "sound": "default",
     "click_action":"FCM_PLUGIN_ACTIVITY"
 },
 "data": {
    "content": "whatever",
 },
 "priority":"high"
}

并使用 FCM API。不要使用 firebase 控制台。