我正在从 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 => { 方法中执行一些操作。
this.notificationListener = FCM.on(FCMEvent.Notification, async (notif) => { 方法仅在 iOS 应用程序处于前台而不是后台时调用。从通知中单击打开应用程序时,永远不会调用此方法。