Expo-notifications:触发器需要采用什么格式?

问题描述

我有一个日历应用,当您创建活动时,您还可以为该活动添加通知。这是我用于安排通知的简单功能。我已经检查过 alert 是以毫秒为单位的正确时间,但通知没有显示。 (此外,其他一切也适用于事件创建,所以我知道那里没有问题。)那么这是否意味着 trigger 需要不是以毫秒为单位的时间?

export default function ScheduleNotification (alert,event) {

  Notifications.cancelAllSchedulednotificationsAsync();
  Notifications.setNotificationHandler({
    handleNotification: () => ({
      shouldShowAlert: true,shouldplaySound: true,shouldSetBadge: false,}),});

    // This is the time I want the notification to show up
    let trigger = alert; // time in milliseconds

    Notifications.scheduleNotificationAsync({
      content: {
        title: "Upcoming event:",body: event,},trigger
    });
}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)