从iOS上的展览通知中获取标题和正文

时间:2019-09-03 09:32:39

标签: react-native push-notification expo

我想为IOS实现前台通知,默认情况下它不会显示。

我像下面那样附加侦听器

   this._notificationSubscription = Notifications.addListener( this._handleNotification );


   _handleNotification = notification => { 
    console.log(notification) 
   }

我现在想获取通知的标题和正文,但其中不包含任何title或body属性。有数据对象(用于有效负载)。但是它不包含标题和正文值。

如何在不将标题和正文添加为有效内容的情况下提取标题和正文?

0 个答案:

没有答案