如何在点击推送通知时重定向到ionic4中的特定路线?

问题描述 投票:0回答:2

如何在点击推送通知时重定向到ionic4中的特定路线?附:我正在使用:this

ionic4 ionic-native cordova-plugin-fcm
2个回答
0
投票

根据这个插件documentation,您可以在用户点击通知时编写您的自定义功能,如下所示:

FCMPlugin.onNotification(function(data){
if(data.wasTapped){
  //your desired code when user click on notification
}
});

希望能帮助到你。


0
投票

根据您使用的插件的documentation,您可以使用以下代码:

this.fcm.onNotification().subscribe(data => {
  if(data.wasTapped){
    console.log("Received in background");
  } else {
    console.log("Received in foreground");
  };
});

然后,您可以实现Angular路由器以路由到特定路由:

this.router.navigate([path]);
© www.soinside.com 2019 - 2024. All rights reserved.