使FullCalendar从嵌套的JSON结构中获取事件数据



我不是以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配置为处理"事件"字段中的数据。

使用http://arshaw.com/fullcalendar/docs/event_data/events_function/"事件作为一种功能"。获取JSON对象并从中解析事件数组。

相关内容

  • 没有找到相关文章

最新更新