我从C#代码发送通知
{
to: "fcm_token",
notification: {
body: "body test",
title: "title test"
},
data:{
body: "body test",
title: "title test",
type="newentry"
},
content_available:true
}
我收到了关于ios的通知。我在FCM.on中执行某些操作(FCMEvent.Notification,notif => {method。
this.notificationListener = FCM.on(FCMEvent.Notification,async(notif)=> {方法仅在iOS应用程序处于前台而不是后台时调用。当打开从通知中点击的应用程序时,永远不会调用此方法。