在全局部错误中获取事件为JSON:$ ajax附近未定义的fonction



我想用SOM Customs事件进行全面的水合,每次我尝试使用Ajax或JSON events时,我都会得到此错误

Uncaught TypeError: undefined is not a function near (...$.ajax...)

这是我的fullcalendar的JavaScript代码:

$(function() {
    // page is now ready, initialize the calendar..
    $('#calendar').fullCalendar({
        themeSystem: 'bootstrap4',
        header:{
            left: 'month,agendaWeek,agendaDay',
            center: 'title',
            right: 'prev,today,next'
        },
        defaultView: 'month',
        weekNumbers: true, 
        weekNumberTitle: "Week",
        slotLabelFormat: 'H:mm',
        nowIndicator: true,
        navLinks: true,
        events: getEvents
    });
});

最后,我发现我正在加载jQuery的苗条版本(我想象的不良剪切/糊操作),其中不包括Ajax函数。

我希望它能帮助某人

相关内容

  • 没有找到相关文章