我想在Meteor应用程序中使用Fullcalendar在一个页面上显示多个项目的时间表。每个项目都有自己的基本周日历视图和自己的事件。当只渲染一个日历时,我能够使日历按预期工作。
对于多个日历,事件在第一次渲染时显示,但在重新绘制事件时消失。我有一个自定义按钮,可以同时更改每个日历的周数。经过几周的变化,这些事件消失了。当使用单个日历时,同样的功能运行良好。我参考了George McKnight的视频作为开始参考:https://www.youtube.com/watch?v=e2jRxw0saRc
我认为在for循环中呈现多个日历是个问题。我看到一些论坛在讨论活动"棒"选项,但我对活动在一个日历中消失没有问题,我认为这不是问题所在。我还看到一些谈话指向我尝试事件源,但不确定我将如何在用例中应用它。
以下是我的代码片段:
Template.ScheduleAdminTest.rendered = function () {
var orgId = UserProfiles.findOne({userId:Meteor.userId()}).orgId;
var items = Items.find({}, {reactive: false}).fetch();
// INITIALIZE VARIABLES
var itemId;
var events;
var itemReservations;
// RENDER CALENDAR FOR EACH ITEM
for (var i = 0; i < items.length; i++) {
itemId = items[i]._id;
$('#calendar-'+itemId).fullCalendar({
header: false,
firstDay: 0, // SUNDAY
contentHeight: 100,
eventLimit: true,
defaultView: 'basicWeek',
views: {
week: {
eventLimit: 5
}
},
editable: false,
eventColor: '#2BA9A5',
events: function(start, end, timezone, callback) {
events = [];
itemReservations = ItemReservation.find({itemId: itemId}, {reactive:false});
itemReservations.forEach(function(reservation) {
events.push({
id: reservation._id,
title: reservation.title,
start: reservation.start,
end: reservation.end,
quoteId: reservation.quoteId,
itemId: reservation.itemId,
});
});
callback(events);
},
eventClick: function(calEvent, jsEvent, view) {
// code for rendering a modal for editing and reviewing events
},
dayClick: function( date, jsEvent, view) {
// code to display modal for adding an event
}
}); // end calendar set
} // end for loop for items
};
在每个日历呈现后尝试此操作:
$('#calendar-'+itemId).fullCalendar('removeEvents'); $('#calendar-'+itemId).fullCalendar('addEventSource', events)