【发布时间】:2020-12-28 06:27:25
【问题描述】:
我正在尝试使用 cordova-plugin-local-notification 在我的 ionic 应用程序中配置本地通知。但它不起作用。
请指出我在哪里做错了。
现在我正在使用以下查询来设置通知。
localStorage.setItem("notifytime", "3600");
var notiftime = localStorage.getItem("notifytime");
this.localNotifications.schedule({
text: 'Delayed ILocalNotification',
trigger: {at: new Date(new Date().getTime() + notiftime)},
led: 'FF0000',
sound: null
});
【问题讨论】:
标签: json ionic-framework local-storage localnotification