我已经设置了FullCalendar(v3.8.0(来从Google日历中提取事件数据,使用qTip2来显示事件信息。这工作正常。
我现在正在尝试显示事件的位置属性。可悲的是,我似乎无法弄清楚如何让FullCalendar在事件中保存Google日历中的信息。
<head>
<meta charset="utf-8">
<title>Test</title>
<meta name="description" content="Test">
<meta name="author" content="Test">
<link rel='stylesheet' href='fullcalendar/fullcalendar.css' />
<link rel='stylesheet' href='qtip/jquery.qtip.min.css' />
<script src='lib/jquery.min.js'></script>
<script src='qtip/jquery.qtip.min.js'></script>
<script src='lib/moment.js'></script>
<script src='fullcalendar/fullcalendar.js'></script>
<script type='text/javascript' src='fullcalendar/gcal.js'></script>
</head>
<body>
<script type='text/javascript'>
$(document).ready(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: '<<hidden>>',
events: {
googleCalendarId: '<<hidden>>'
},
header: {
left: 'title',
center: 'listWeek, agendaWeek, month',
right: 'prev,next'
},
weekends: false,
eventRender: function(event, element) {
element.qtip({
content: event.description,
title: event.title,
position: {
my: 'center', //Ecke des Tooltips
at: 'center', //Position auf der Seite (auch Target möchlich)
target: $(window)
},
show: 'click'
});
},
eventClick: function(event) {
if (event.url) {
return false;
}
}
});
});
</script>
<div id='calendar'></div>
</body>
我试图将位置属性添加到EventDef.defineStandardProps,但是这个apperas没有效果。
EventDef.defineStandardProps({
// not automatically assigned (`false`)
_id: false,
id: false,
className: false,
source: false,
// automatically assigned (`true`)
title: true,
url: false,
rendering: true,
constraint: true,
overlap: true,
editable: true,
startEditable: true,
durationEditable: true,
color: true,
backgroundColor: true,
borderColor: true,
textColor: true,
location: true
});
这也在"fullcalendar jQuery - 可以从Google日历事件中检索描述吗?"中进行了讨论,但是提供的解决方案似乎已经过时并且不再适用。关于这个主题的所有其他线程要么没有,要么没有结论性的答案。
我可以采取哪些步骤才能使用活动地点?
在eventRender回调(https://fullcalendar.io/docs/event_rendering/eventRender/(期间,您应该能够访问event.location
,假设Google在您收到的JSON中为您提供了该字段。您可以通过在 eventRender 代码中插入行console.log(JSON.stringify(event));
来检查事件的内容,以记录可用的事件属性。
如果数据源提供了自定义属性,则 FullCalendar 很乐意保留事件对象的自定义属性。获得这些数据后,您可以随心所欲地将其插入到事件的HTML中。
我不知道您尝试在过程中的哪个位置向事件标准属性添加内容,但无论如何这毫无意义 - 它只会预定义一个空属性,它不会导致它实际填充任何东西。