我在Ionic 3中使用FCM。当应用程序处于前台时,我得到了正确的通知。当我在后台收到通知时,仅在点击通知后才能在通知中获取数据。但是我想获取数据而不点击通知。例如,请参见下面的代码。
this.fcm.onNotification().subscribe(data => {
if(data.wasTapped){
console.log("Received in background");
} else {
console.log("Received in foreground");
};
});
如果data.wasTrapped为true,则在这里获取数据,否则在前台。 我的问题是在后台运行
时无需点击通知即可获取数据