我想为IOS实现前台通知,默认情况下它不会显示。
我像下面那样附加侦听器
this._notificationSubscription = Notifications.addListener( this._handleNotification );
_handleNotification = notification => {
console.log(notification)
}
我现在想获取通知的标题和正文,但其中不包含任何title或body属性。有数据对象(用于有效负载)。但是它不包含标题和正文值。
如何在不将标题和正文添加为有效内容的情况下提取标题和正文?