我使用的是fullcalendar,我想在特定的一天和一小时添加一个事件,但该事件在所有的日子都会呈现。(时隙工作(
我浏览了所有的文档,但没有发现任何错误。
我的代码:
var calendar = new FullCalendar.Calendar(calendarEl, {
events: [{ // My event
title: 'The Title',
start: '2020-08-05',
end: '2020-08-06',
startTime: '09:00:00',
endTime: '10:00:00',
allDay: false
}],
contentHeight: 'auto',
initialDate: new Date('2020-08-01'),
validRange: {
start: '2020-08-01',
end: '2020-08-18'
},
titleFormat: { year: 'numeric', month: 'long', day: 'numeric' },
headerToolbar: {
start: 'title',
center: '',
end: 'prev,next'
},
initialView: 'timeGridWeek',
slotDuration: '01:00:00',
slotMinTime: '09:00:00',
slotMaxTime: '18:00:00',
weekends: false,
locale: 'es',
allDaySlot: false,
});
这是我的代码笔,里面有错误和我正在使用的代码
https://codepen.io/alfijuan/pen/yLeqwer?editors=1010
希望有人能帮忙!
谢谢!
您已将其指定为重复事件。删除startTime
和endTime
属性,并将时间数据与日期一起合并到start
和end
属性中。
{
title: 'The Title',
start: '2020-08-05 09:00:00',
end: '2020-08-06 10:00:00',
allDay: false
}
演示:https://codepen.io/ADyson82/pen/ZEQMEvY
请参阅https://fullcalendar.io/docs/v5/event-object和https://fullcalendar.io/docs/v5/recurring-events了解单个事件与重复事件所需的差异和属性