我的工作我的反應本地項目,並有問題,下面的功能關於Javascript對象
this.notificationListener = FCM.on(FCMEvent.Notification, async (notif) => {
console.log(notif.custom_notification);
console.log(notif.custom_notification.body);
});
爲console.log(notif.custom_notification);
它可以記錄
{"show_in_foreground":true,"sound":"default","title":"MyNewApp","body":"ffff","priority":"high"}
爲console.log(notif.custom_notification.body);
其記錄
undefined
我怎樣才能notif.custom_notification的主體?
您是否嘗試過'notif.custom_notification [「body」]'? –
解析它,JSON.parse(notif.custom_notification).body –
@ReiDien是的,你是對的,謝謝 – wo99999