React Native Scheduled Local Notifications 在通知托盘中显示预定时间而不是当前时间
React Native Scheduled Local Notifications showing scheduled time instead of current time in notification tray
我已将预定日期增加 1 天来安排本地通知。当收到通知时,它显示通知到达日期为 1 天前,这是调度程序添加日期,而不是当前时间(现在)。无论如何要解决这个问题?
我的buildAndroidNotification
函数有属性when
属性如下,
when: new Date().getTime()
它需要传递预定日期的时间值而不是当前日期对象,
如果使用 moment.js
let timeStampMoment = moment(scheduleDate, "MM-DD-YYYY Z").valueOf();
并设置,
when: timeStampMoment
我已将预定日期增加 1 天来安排本地通知。当收到通知时,它显示通知到达日期为 1 天前,这是调度程序添加日期,而不是当前时间(现在)。无论如何要解决这个问题?
我的buildAndroidNotification
函数有属性when
属性如下,
when: new Date().getTime()
它需要传递预定日期的时间值而不是当前日期对象, 如果使用 moment.js
let timeStampMoment = moment(scheduleDate, "MM-DD-YYYY Z").valueOf();
并设置,
when: timeStampMoment