我正在使用基于 fullcalendar 的 Angular 模块:https ://github.com/angular-ui/ui-calendar以及来自 ng-bootstrap 的对话框模块。我将日历配置为显示一个对话框,用于在 eventClick 操作上编辑事件。它只工作一次。关闭第一个对话框并再次单击任何事件后,新对话框不会显示。但是,当我单击页面上的任何其他链接时,所有所需的对话框都会一一显示,就像它们以某种方式在某处排队一样。
这是我的控制器的片段:
$scope.showEditVisitDialog = function (event) {
var editVisitDialogOpts = {
backdropClick: false,
templateUrl: 'views/addEditVisitDialog.html',
controller: 'AddEditVisitDialogController',
resolve: {
patientId: function () {
return event.patientId;
},
visitId: function () {
return event.id;
}
}
};
var editVisitDialog = $dialog.dialog(editVisitDialogOpts);
editVisitDialog.open().then(function (updatedVisit) {
//some action
});
};
$scope.calendar = {
height: 450,
editable: true,
header: {
left: 'month agendaWeek ',
center: 'title',
right: 'today prev,next'
},
eventClick: $scope.showEditVisitDialog
};
$scope.events = [];
$scope.eventSources = [$scope.events]
稍后在控制器中从 REST 获取事件。
在 html 中:
<div ui-calendar="calendar" config="calendar" ng-model="eventSources"/>
控制台没有错误,我做错了什么?
plunker 上的代码:http ://plnkr.co/edit/89sQfsU85zN4uxauFI2Y?p=preview