gpt4 book ai didi

react-native - 如何查看当前设置的本地通知?

转载 作者:行者123 更新时间:2023-12-05 03:20:18 31 4
gpt4 key购买 nike

我们的应用允许用户设置每日通知,提醒他们使用我们的应用。我们目前有一个错误,所以我想看看当前设置了哪些通知。

我读过 docs并找到了 PushNotification.getScheduledLocalNotifications(callback); 但我正在努力研究如何实现它。真的,我只想控制日志计划通知。

任何帮助都会很棒!

作为引用,这是我们目前设置通知的方式

if (Platform.OS === "ios") {
// iOS
PushNotificationIOS.scheduleLocalNotification({
alertTitle: config.reminder.title,
alertBody: config.reminder.text,
fireDate: tomorrow,
repeatInterval: "day",
});
} else if (Platform.OS === "android") {
PushNotification.scheduleLocalNotification({
title: config.reminder.title,
body: config.reminder.text,
date: tomorrow,
});
}

最佳答案

它有一个回调返回所以像这样尝试你应该得到你的计划本地通知数组

PushNotification.getScheduledLocalNotifications((data) => {
console.log('ScheduledLocalNotifications: ', data);
});

关于react-native - 如何查看当前设置的本地通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73215383/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com