我正在使用iOS PhoneGap local notification plugin。
我已安排在每天08:30重复通知。即使在我卸载并重新安装应用程序或注释掉window.plugin.notification.local.add({})
之后,徽章编号也始终显示为1。检查通知板,“全部”和“缺失”均为空。有什么想法吗?
window.plugin.notification.local.add({
date: d, // This expects a date object
message: itemsData4.newsItems[0].headline, // The message that is displayed
title: 'Morning Food Delivered', // The title of the message
repeat: 'daily', // Either 'secondly', 'minutely', 'hourly', 'daily', 'weekly', 'monthly' or 'yearly'
autoCancel: true, // Setting this flag and the notification is automatically canceled when the user clicks it
});
答案 0 :(得分:0)
我认为徽章编号只有在明确告知时才会更新。因此,您可以尝试window.plugin.notification.local.cancelAll()
,然后使用date:new Date()
和bagde:0
添加一个新的。{/ p>