我正在尝试开发我的第一个应用程序,其中我想将用户指定的时间分配为下午7:10,这用于每天重复但不能将其值分配给$ cordovaLocalNotification中的属性日期。另外还有一件事是从数据库中获取这些值,因为我使用$ cordovaSQLite插件来存储数据。
这是我的存储代码,
$cordovaSQLite.execute(db, query, $scope.medicine.medicinename,$scope.medicine.medicinetype,$scope.medicine.timeValue1])
分配值
$cordovaLocalNotification.schedule({
id:$scope.medicine._id,
title: $scope.medicine.medicinename,
message: $scope.medicine.medicinetype,
repeat:'daily',
date: $scope.medicine.timeValue1
})
$ionicPopup.alert({
title:"Done",
template:"Notification set for daily"+$scope.medicine.timeValue1
})
值正在存储但无法使用本地通知。如果动态分配显示通知的值的任何示例将是很有帮助的。