fullcalendar-4.1.0 事件(events)使用函数时报错

fullcalendar-4.1.0 事件(events)使用函数时报错

最近下载使用了fullcalendar-4.1.0版本做事件日历,在events使用函数时一直出错,但是直接给json值就可以,查了很多资料,最后自己看了下源码,是因为参数个数的问题。events: function(start…callback){}之前的版本有传3或4个的参数,但是这个版本只用两个参数events: function(start, callback){}即可,start里面可以得到当前日历的开始时间与结束时间,第二个就是回调,完整的使用方法为:

events: function(start, callback){
	//prev上一月, next下一月等事件时调用
	var startTime = start.startStr;
	var endTime = start.endStr;
	$.ajax({
		url: '/planCalender/das/'+startTime+'/'+endTime,//URL
		dataType: 'json',
		success: function(json) { 
			callback(json);// 将取回的数据传给日历即可
		}
	});
}

给一个参考的数据格式:

events =  [{
	groupId: 1,
	 title: '测试1',
	 color: "green",//事件块的颜色
	start: '2019-04-01',
	end: '2019-04-05'
	},
       	{
	groupId: 2,
	 title: '测试2',
	  color: "red",//事件块的颜色
	start: '2019-04-07',
	 end: '2019-04-10'
	 }];

你可能感兴趣的:(fullcalendar-4.1.0 事件(events)使用函数时报错)