我想使用jQuery Full Calendar插件,JSON url選項,但它沒有拋出任何錯誤,但事件也不顯示。我無法弄清楚問題是什麼。jQuery完整的日曆不顯示來自url的事件,也沒有錯誤
完整的日曆電話:
$('#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"
}
]
什麼是dateFormat?以毫秒爲單位的日期?我不認爲FullCalendar認識到 - 和'start'是事件對象的必需字段,所以我認爲它無法呈現。 – ganeshk
@ ganeshk這是一個unix時間戳,文檔說它應該接受。我也不明白你的評論的第二部分,每個事件對象都有一個「開始」屬性。 – GSto