我正在尝试使用带有 JSON url 选项的jQuery Full Calendar插件,但它没有抛出任何错误,但事件也没有显示。我无法弄清楚问题可能是什么。
完整的日历电话:
$('#calendar').fullCalendar({
aspectRatio: 1.3,
defaultView: 'agendaWeek',
slotMinutes: 15,
editable: true,
allDaySlot:false,
events: '/appt/appointments/json_event_source'
});
来自 URL 的示例响应
[
{
"id": "2",
"title": "Adrian Adams",
"start": "1346339700",
"end": "1346340600"
},
{
"id": "3",
"title": null,
"start": "1346166000",
"end": "1346169600"
},
{
"id": "4",
"title": "asdfEditeda asdf",
"start": "1346335200",
"end": "1346335200"
},
{
"id": "5",
"title": "asdfEditeda asdf",
"start": "1346335200",
"end": "1346335200"
},
{
"id": "6",
"title": "asdfEditeda asdf",
"start": "1346335200",
"end": "1346339700"
}
]