另一个尝试让这个排序。我创建了一个回购 https://github.com/pnunn/testFullCalendar 它有一个正在运行的流星应用程序,可以显示流星无法正确渲染日历的问题。
首次加载时,日历上没有可见事件。导航到上个月或下个月再返回,然后神奇地显示事件。如果单击某个事件并更改其中一个复选框(事件颜色应更改),则会再次呈现该事件,或者在手动刷新页面之前再次正确呈现该事件。
有谁能告诉我如何解决这个问题?我已经尝试过调用re-render,eventRender和日历文档中的每个函数组合,但还没有破解那个神奇的函数。
感谢。
彼得。
答案 0 :(得分:5)
您的问题已修复https://github.com/parhelium/testFullCalendar。
首先,需要引用Calendar的实例
calendar = $('#calendar').fullCalendar({...}).data().fullCalendar;
使用Requests.find()的函数可以使用Deps.autorun包装,以便每次更新Requests集合时重新运行它:
Template.packLayout.rendered = function(){
calendar = $('#calendar').fullCalendar({
dayClick:function( date, allDay, jsEvent, view ) {
Requests.insert({title:'Request',start:date,end:date,color:'red',className:'todo'});
Session.set('lastMod',new Date());
},
eventClick:function(reqEvent,jsEvent,view){
Session.set('editingReqEvent',reqEvent.id);
Session.set('showEditEvent',true);
},
eventDrop:function(reqEvent){
Requests.update(reqEvent.id, {$set: {start:reqEvent.start,end:reqEvent.end}});
Session.set('lastMod',new Date());
},
events: function(start, end, callback) {
var events = [];
reqEvents = Requests.find({},{reactive:false});
reqEvents.forEach(function(evt){
event = {id:evt._id,title:evt.title,start:evt.start,end:evt.end,color:evt.color};
events.push(event);
})
callback(events);
},
editable:true,
weekMode: 'liquid',
}).data().fullCalendar;
Deps.autorun(function(){
allReqsCursor = Requests.find().fetch();
console.log("Autorun -> ", allReqsCursor.length)
if(calendar)
calendar.refetchEvents();
})
};
答案 1 :(得分:0)
根据最新的 Meteor 1.5.2 作为日期,下面的fullcalendar:fullcalendar
是工作代码,
Template.packLayout.rendered = function(){
calendar = $('#calendar').fullCalendar({
events: function(start, end, timezone, callback) { // timezone added here
// same code
},
editable:true,
weekMode: 'liquid',
}).data().fullCalendar;
this.autorun(function(){ // Deps.autorun replaced here
// same code
})
};
注意:
的最新function( start, end, timezone, callback ) { }
是[https://fullcalendar.io/docs/event_data/events_function/][1]events
方法