$scope.scheduleMutipleNotification = function () {
cordova.plugins.notification.local.schedule({
id: 1,
title: ‘应用提醒1’,
text: ‘应用有新消息,快来查看吧’,
at: new Date(new Date().getTime() + 5 * 60 * 1000)
},{
id: 2,
title: ‘应用提醒2’,
text: ‘应用又有新消息,快来查看吧’,
at: new Date(new Date().getTime() + 10 * 60 * 1000)
});
};