无法在FullCalendar中使用GoToDate



我正在尝试使用这里可用的方法gotoDate,所以我做了:

var calendar = new FullCalendar.Calendar(calendarEl, {
plugins: [ 'dayGrid' ],
locale: 'it',
header: {
left: 'prev, next today',
center: 'title',
right: 'list'
},
height: 500,
defaultView: 'dayGridMonth',
navLinks: true, 
editable: true,
eventLimit: true
});
calendar.render();

当我使用功能时

calendar.fullCalendar('gotoDate', moment());

我得到:

fullCalendar不是一个函数

在FullCalendar v4中,您使用的方法被删除,这就是为什么您不能使用v3中的方法。

对于v4,请使用此链接。

calendar.gotoDate(date(

相关内容

  • 没有找到相关文章

最新更新