通知应在选定的日期和时间触发。
通知也可以在后台运行,但我只能听到声音并且通知没有出现在顶部。
我尝试过使用“ontrigger”方法,但没有奏效。我应该怎么办?
请帮我。
....
var reminderTime = new Date(DateFromTheDataBase[index]);
opt = {
id : indexID,
title : 'Title',
message : data.intent+'\n',
sound : '/www/mySound/sound.wav',
autoCancel : true,
date : reminderTime
}
if(window.plugin && window.plugin.notification.local){
//window.plugin.notification.local.cancelAll();
window.plugin.notification.local.add(opt);
}