我想在我的应用的设备日历中显示活动提醒,并尝试使用ngCordova的$cordovaCalendar
和Phonegap Calendar Plugin来实现此目的。使用ngCordova网站上的说明我设置了ngCordova并安装了插件,但我遇到了以下问题:
错误指向ng-cordova.js
文件中的以下代码:
$window.plugins.calendar.createEvent(
defaultOptions.title,
defaultOptions.location,
defaultOptions.notes,
new Date(defaultOptions.startDate),
new Date(defaultOptions.endDate),
function (message) {
d.resolve(message);
}, function (error) {
d.reject(error);
}
);
我的控制器代码:
.controller('CalendarCtrl', function ($scope, $cordovaCalendar) {
$cordovaCalendar.createEvent({
title: 'Space Race',
location: 'The Moon',
notes: 'Bring sandwiches',
startDate: new Date(2015, 0, 6, 18, 30, 0, 0, 0),
endDate: new Date(2015, 1, 6, 12, 0, 0, 0, 0)
}).then(function (result) {
// success
}, function (err) {
// error
});
})
答案 0 :(得分:2)
这些问题通常是由于插件没有正确安装或者没有等待加载所有Cordova插件引起的,我想你可能会在这里处理第二个问题。添加$ionicPlatform
作为依赖项并尝试以下操作:
$ionicPlatform.ready(function() {
$cordovaCalendar.createEvent({
title: 'Space Race',
location: 'The Moon',
notes: 'Bring sandwiches',
startDate: new Date(2015, 0, 6, 18, 30, 0, 0, 0),
endDate: new Date(2015, 1, 6, 12, 0, 0, 0, 0)
}).then(function (result) {
// success
}, function (err) {
// error
});
});
$ionicPlatform.ready
确保在执行其作用域内的任何已定义函数之前加载所有插件,否则您在加载插件之前尝试调用该插件。
答案 1 :(得分:0)
在提供答案之前,我需要了解以下内容: