就像在月份中我只想显示图像一样,在周视图和日视图中我想显示事件的完整描述。我已经完成了月视图,我有不同的数据,但不知道如何在该视图中调用事件数据。我尝试使用 viewDisplay 但不知道如何在这里调用我的事件。
events: function(start, end, callback) {
var currentview = $('#calendar').fullCalendar('getView'); //alert('event called');
if(currentview.name == 'month')
{
var events = <?php echo "[".$json."]"; ?> // this is where we call the php variable
}
else
{
var events = <?php echo "[".$weekjson."]"; ?>
}
callback(events);
}
这段代码很完美,但不是每次我的视图发生变化时都会调用。