我正在尝试更新事件放弃事件的完整日历。当我尝试控制事件时,它会在开始时刻显示更新时间(图像中的第一个对象)。但是当我尝试使用event.start访问开始时刻时,它显示的是前一个值(在图像中的对象下面)。 如何通过在完整日历中使用事件对象来获取更新的开始时刻。 fullcalendar的配置
$scope.uiConfig = {
calendar: {
height: 780,
editable: true,
header: {
today: 'Hello',
left: 'title',
center: '',
right: 'today prev,next'
},
buttonText: {
today: 'Today'
},
allDaySlot: false,
start: moment(),
end: moment(moment().add(30, 'day')),
firstDay: (new Date().getDay()),
timezone: "local",
defaultView: "agendaWeek",
eventClick: $scope.onEventClick,
eventRender: $scope.eventRender,
eventDragStop: $scope.onDragStop,
slotDuration: '00:15:00',
slotLabelInterval: "01:00",
}
拖动事件功能
$scope.onDragStop = function (event, jsEvent, ui, view) {
console.log(event);
console.log(slot.start);
}