gpt4 book ai didi

javascript - 未捕获的类型错误 : boolean is not a function on ajax call in fullcalendar

转载 作者:行者123 更新时间:2023-12-03 11:22:19 26 4
gpt4 key购买 nike

我的应用程序上有一个完整的日历,我添加了以下方法来按用户过滤结果:

function filter_by_provider(selected_provider) {
$('#calendar').fullCalendar( 'removeEvents' );
$('#calendar').fullCalendar( 'addEventSource', function(start, end, callback) {
$.getJSON(source, function(data){
var eventsToShow = [];
for(var i=0; i<data.length; i++){
if(data[i].provider == selected_provider || selected_provider == ""){
eventsToShow.push(data[i]);
};
};
callback(eventsToShow); //here's the Error
});
});
};

问题是回调似乎不起作用,我一直在该行收到此错误:

Uncaught TypeError: boolean is not a function

难道是jquery没有安装好?我错过了什么吗?

如果有任何帮助,我将不胜感激。提前致谢。

最佳答案

尝试:

$('#calendar').fullCalendar( 'addEventSource', function(start, end, timezone, callback) {

位于 docs :

timezone is a string/boolean describing the calendar's current timezone. It is the exact value of the timezone option.

关于javascript - 未捕获的类型错误 : boolean is not a function on ajax call in fullcalendar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27048659/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com