我正在使用这个包来实现本地推送通知:
https://github.com/zo0r/react-native-push-notification
我正在使用这样的操作按钮在通知中显示按钮以及文本和标题:
PushNotification.localNotification({
...
actions: '["Yes", "No"]'
})
我想知道当用户单击这些操作并且应用程序变得可见时如何调用函数?
我已经PushNotification.configure
在componentDidMount
我的主屏幕中尝试过这样的方法,但控制台中没有出现任何内容:
PushNotification.configure({
// (required) Called when a remote or local notification is opened or received
onNotification: function(notification) {
console.log("NOTIFICATION:", notification);
if (notification.userInteraction) {
console.log("NOTIFICATION:");
}
// process the notification
}
});