0
我送的事件不是作爲一個JSON數組提取事件數據,但像這樣:讓FullCalendar從嵌套的JSON結構
{"result":"success",
"events":[
{"end":"2012-07-14T11:00:00", "description":"1", "title":"2", "start":"2012-07-14T07:00:00"},
{"end":"2012-07-14T11:00:00", "description":"3", "title":"4", "start":"2012-07-14T07:00:00"}
]}
而且從FullCalendar收到這樣說:
events:{
url:'/sweatiquette/calendar/events/',
type:'POST',
allDayDefault:false,
data:{action:'get'}
}
我不知道我是否可以配置FullCalendar來處理來自「events」字段的數據,如果我使用這個結構發送它的話。