0
app.controller('programaCtrl', function($scope, $state, $stateParams, $timeout,$rootScope, $cordovaCalendar) {
var programa = $stateParams.programa;
$scope.programa = programa;
var item = {
title: programa.titulo,
location: programa.ubicacion,
startDate: new Date(programa.fecha_inicio),
endDate: new Date(programa.fecha_fin)
};
console.log(item);
var checkEvent = function(){
$cordovaCalendar.findEvent(item)
.then(function (result) {
console.log('kkjk'+result);
if (result.length.toString() == '0') {
$scope.programa.calendario = 'Agregar al calendario +';
} else {
$scope.programa.calendario = 'Remover del calendario -';
}
},
function (error) {
alert('Ocurrio un problema al obtener los datos del calendario, por favor vuelve a intentar: ' + JSON.stringify(error));
});
}
$scope.addEvento = function() {
if($scope.programa.calendario === 'Agregar al calendario +'){
$cordovaCalendar.createEvent(item)
.then(function (result) {
checkEvent();
},function (error) {
alert('Ocurrio un problema al agregar al calendario, por favor vuelve a intentar: ' + JSON.stringify(error));
});
}else{
$cordovaCalendar.deleteEvent(item)
.then(function (result) {
checkEvent();
},
function (error) {
alert('Ocurrio un problema al borrar en el calendario, por favor vuelve a intentar: ' + JSON.stringify(error));
});
}
}
checkEvent();})
누군가 내 도움이 될 수있는 이오닉 앱이 저에게이 오류를 보여줍니다!'캘린더'속성을 읽을 수 없습니다
TypeError:Cannot read property 'calendar' of undefined at object.findEvent(ng-Cordova.js:)
이 달력 플러그인을 추가나요하여 각 모듈에 종속성으로 ngCordova 포함되어 있습니까? – vbharath
예, 'cordova plugin add https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin.git'명령을 입력했지만이 오류는 제거되지 않았습니다. – user3757212
ngcordova.js를 포함 시켰습니까? – vbharath