我正在使用以下代码使用 firebase 在我的 ionic 应用程序上接收数据,当应用程序处于后台时,我得到 data.wastapped = true 现在我需要将数据传递给我的主控制器,请帮助我实现这一点
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);
}