我正在从服务器收到通知。收到通知后,当我单击该通知后,然后再次发出相同的通知。更多我单击更多通知即将到来。
我的问题是我是否遵循上述代码中的正确方法?如果没有,请建议我正确的一个。如何处理通知的点击?因此,我可以在单击时显示特定的视图。
我正在使用以下链接https://github.com/zo0r/reaeact-native-push-notification
预先感谢:(
PushNotification.configure({
onNotification: function (notification) {
console.log('NOTIFICATION:', notification)
PushNotification.localNotification({
largeIcon: "ic_launcher",
title: notification.title,
message: notification.message,
});
},
senderID: "my sender ID",
popInitialNotification: true,
requestPermissions: true,
});
我尝试了以下方法来解决此问题
PushNotification.configure({
onNotification: function (notification) {
console.log('NOTIFICATION:', notification)
const clicked = notification.userInteraction;
if (clicked) {
ToastAndroid.show(notification.message,ToastAndroid.CENTER);
} else {
PushNotification.localNotification({
largeIcon: "ic_launcher",
title: "Test",
//message: JSON.stringify(xyz.notificationResponse.bookingId),
});
}
ToastAndroid.show(notification.message,ToastAndroid.CENTER);
},
senderID: "your sender id",
popInitialNotification: true,
requestPermissions: true,
});