0
私はfirebaseを使用して私のイオンアプリでデータを受け取るために次のコードを使用しています。私はdata.wastapped = trueを返します。私のメインコントローラは、このCordova FCMプラグインがバックグラウンド通知データを処理します
FCMPlugin.onNotification(
function(data){
if(data.wasTapped){
alert(JSON.stringify(data);
// need to pass this data to my app controller
tapped by the user.
alert(JSON.stringify(data));
}else{
alert(JSON.stringify(data));
}
},
function(msg){
alert('onNotification callback successfully registered: ' + msg);
},
function(err){
alert('Error registering onNotification callback: ' + err);
}