我已经在名为init.js
的脚本中初始化了fullcalendar v 4.2.0:
$(document).ready(function() {
var calendarEl = document.getElementById('calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {...});
calendar.render();
});
然后在另一个名为file.js
的脚本中,我将做一些操作,我需要调用:
$(document).ready(function() {
$("#btn").on("click", function() {
// do some stuff here .... then update fullcalendar view
calendar.refetchEvents();
});
});
但是我得到了错误:
calendar.refetchEvents is not a function
如何从file.js
调用此方法?