Expo推送通知单击事件

问题描述 投票:0回答:1

在文档中找不到如何处理通知的点击只有一种方式可以订阅通知。

Notifications.addListener(this._handleNotification);
react-native push-notification expo
1个回答
0
投票

您必须使用“ origin”属性来确定是否接收或选择了通知。

_handleNotification = (notification) => {
    if(notification.origin === 'received') {
        // after receive push notification code
    }else if(notification.origin === 'selected'){
        // after click code
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.