gpt4 book ai didi

typescript - 如何设置每 X 分钟本地通知一次?

转载 作者:搜寻专家 更新时间:2023-10-30 21:59:38 25 4
gpt4 key购买 nike

我正在尝试这样设置它们:

this.localNotifications.schedule({
id: 0,
text: 'Message',
sound: this.platform.is('android') ? 'file://sound.mp3' : 'file://beep.caf',
every: this.NotificationsTimer,
icon: 'notification_icon',
led: '#ff00c3'
});

this.NotificationsTimer 的值为 5。但它不起作用,我应该如何让它起作用?

最佳答案

您现在使用 Ionic 获得的版本似乎是 0.8.5。那么您应该将 every 与以下字符串之一一起使用:

  • 第二个
  • 分钟
  • 小时
  • 季度

如果您使用的是最新版本(0.9.x,目前处于测试阶段),则有更多选项。以下信息取自 cordova-plugin-local-notifications repo :

重复,从现在开始:

trigger: { every: 'day', count: 5 }

或者每次日期匹配时:

trigger: { every: { month: 10, day: 27, hour: 9, minute: 0 } }

关于typescript - 如何设置每 X 分钟本地通知一次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46558072/

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