我正在使用this cordova插件并想知道是否可以使本地通知粘性/不可移除?
答案 0 :(得分:4)
没那么糟糕。只需在插件中设置本机选项“ongoing:true”:
scheduleActiveAlarm = function () {
cordova.plugins.notification.local.schedule({
id: 1,
text: 'Test text',
ongoing: true
});
};
https://github.com/katzer/cordova-plugin-local-notifications/wiki/04.-Scheduling