如何在点击推送通知时重定向到ionic4中的特定路线?附:我正在使用:this
根据这个插件documentation,您可以在用户点击通知时编写您的自定义功能,如下所示:
FCMPlugin.onNotification(function(data){
if(data.wasTapped){
//your desired code when user click on notification
}
});
希望能帮助到你。
根据您使用的插件的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]);