我有一个Ionic 2应用程序,可以通过以下方式安排通知:LocalNotificacions
我创建了以下通知:
let options = {
id: reminder.id,
text: this.NOTIFICATION_TEXT,
at: reminder.date,
sound: this.notifySoundPath,
every: "day",
data: notificationData
};
它会安排每天重复的通知。
现在,我需要创建在特定日期重复的通知。用户应该可以选择星期一,星期二,星期三等日期。而且我需要能够安排在这些日子里重复的提醒。
我可以使用这个插件吗?
提前感谢。