用fullCalendar报Uncaught TypeError: this.calendar.pushloading_s is not a function错误怎末回事

问题遇到的现象和发生背景

events: function(start, end, timezone, callback){
$.ajax({
type : "POST",
url :后台地址,
dataType: "json",
data :JSON.stringify({
start:String(currentDateStart),
end:String(currentDateEnd),
}),
success : function(res) {
console.log(res);
var events = [];
$(res).find('tr').each(function() {
events.push({
title: $(this).attr('title'),
start: $(this).attr('start'),
});
});
callback(events);
},
error : function(e){
console.log(e.status);
}
});
},

问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

this.calendar这个值应该是undefined,你自己排查下,

this.calendar 打印这个 看看 是不是 函数名 写错了