0

我不是以 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 来处理来自“事件”字段的数据。

4

1 回答 1

0

使用http://arshaw.com/fullcalendar/docs/event_data/events_function/ “事件作为函数”。获取您的 JSON 对象并从那里解析事件数组。

于 2012-07-13T06:24:23.550 回答