我已经多次看到这个问题(并回答了),但到目前为止,没有一个解决方案对我有用。
我有一个 cfc 将 json 数据返回到 FullCalendar 的实例。
返回的数据如下所示:
[{"id":2,"title":"测试事件一","start":"2011 年 2 月 17 日 09:30:00","end":"2010 年 2 月 17 日 10:30:00", “整天”:假}]
该事件显示在所有日历视图中的正确日期 - 但显示在全天部分中。
我正在像这样调用日历:
$('#calendar').fullCalendar({
editable: true,
events:'getEvents.cfc?method=getEvents&returnformat=json',
header: {
right: '',
center: 'prev,next today',
left: 'agendaDay,agendaWeek,month,'
}
我真的很感激这方面的任何帮助 - 谢谢