完整日历-2.7.3 事件在初始加载时未显示



在我的控制台中,我收到此错误:

jQuery.Deferred exception: Cannot read property 'clone' of null TypeError: Cannot read property 'clone' of null

在 _fetchEventSource(源、回调)方法的这个循环中:

for (i = 0; i < fetchers.length; i++) {
    res = fetchers[i].call(
        t, // this, the Calendar object
        source,
        rangeStart.clone(), // rangeStart is undefined
        rangeEnd.clone(),
        options.timezone,
        callback
    );

问题是没有设置范围开始。但是,如果我使用默认标题中的按钮从"月"视图更改为"周"视图,然后再次返回,则会加载事件。

我不知道为什么最初没有设置 rangeStart,但如果我切换视图,就可以设置好了。

 

为了完整起见,这是我调用日历的JS:

$('.event-calendar').fullCalendar({
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,basicWeek,basicDay'
    },
    eventLimit: true,
    events: {
        url: '/events/json',
        color: '#0060db',
        textColor: 'white'
    }
});

这是与最新的 JQuery 3 兼容的问题。我忍不住,但如果你想开始工作 FullCallendar,你应该暂时将你的 JQuery 反转到 2.x 或 1.x 行并等待 FullCalendar 更新。

相关内容

  • 没有找到相关文章

最新更新