嗨我正在使用fullcalendar在我的前端显示时间段。我正在将json数据发送到fullcalendar配置,并且它显示所有时间段,而不是通过json数据存在的时间。
我的日历配置是
$('#calendar').fullCalendar({
defaultView: 'agendaDay',
defaultDate: $scope.today,
schedulerLicenseKey: 'CC-Attribution-NonCommercial-NoDerivatives',
header: {
left: 'prev,next today',
center: 'title',
right: 'agendaDay,agendaWeek,month'
},
allDaySlot: false,
eventClick: function (eventsFeed) {
$scope.openApptDetails(eventsFeed);
},
minTime: "07:00:00",
maxTime: "21:00:00",
contentHeight: "auto",
resources: resourcesFeed,
events: eventsFeed
});
任何人都可以帮助我,为什么日历不会在上午10点之前显示时段。
json数据:
event: {color:"green",end:"2018-04-18T10:00:00",resourceId:1,start:"2018-04-18T9:00:00",studentName:"",title:"Available",tutorName:"",type:"",}
resource: {id:1,title:"Timmy Tutor"}
我正在使用FullCalendar v3.6.1
答案 0 :(得分:1)
尝试2018-04-18T09:00:00
而不是2018-04-18T9:00:00
小时内缺少 0 。