完整日历显示问题

时间:2014-10-15 14:37:35

标签: c# jquery asp.net

我使用fullcalendar.js v1.5.3

实现了完整日历

之前我将事件连接到字符串并从处理程序返回响应。这显示了预期的结果。字符串返回

[{id:'6',标题:'Dainik Jagran,勒克瑙,2013年1月21日',开始时间:1413311400,结束时间:1413311400,allDay:true,描述:'勒克瑙颁奖典礼,2013年1月21日' },{id:'7',标题:'Dainik Jagran,Lucknow,2014年1月21日',开始时间:1412620200,结束时间:1412620200,allDay:true,描述:'勒克瑙颁奖典礼,2014年1月21日'}, {id:'8',标题:'Dainik Jagran,勒克瑙,2014年1月21日',开始:1413271800,结束:1413280800,allDay:false,描述:'伦敦颁奖典礼,2014年1月21日'}]

enter image description here

但稍后我会返回序列化字符串。我写了以下代码。

        foreach (CalendarEvent cevent in EventDAO.getEvents(start, end))
    {
        eventList.Add(new BadCalendarEvent
        {
            id=cevent.id,
            title=cevent.title,
            start = ConvertToTimestamp(cevent.start),
            end = ConvertToTimestamp(cevent.end),
            allDay = GetDay(cevent),
            description = cevent.description 
        }); 
        idList.Add(cevent.id);
    }

    result = serializer.Serialize(eventList);
    context.Session["idList"] = idList;

    context.Response.Write(result);

字符串返回

[{“id”:6,“title”:“Dainik Jagran,Lucknow,2013年1月21日”,“描述”:“勒克瑙颁奖典礼,2013年1月21日”,“开始”:1413311400,“结束“:1413311400,”allDay“:”true“},{”id“:7,”title“:”Dainik Jagran,勒克瑙,2014年1月21日“,”描述“:”勒克瑙颁奖典礼,1月21日。 2014“,”开始“:1412620200,”结束“:1412620200,”allDay“:”true“},{”id“:8,”title“:”Dainik Jagran,Lucknow,2014年1月21日“,”描述“ :“伦敦颁奖典礼,2014年1月21日”,“开始”:1413271800,“结束”:1413280800,“allDay”:“false”}] 但我得到了以下结果

enter image description here

我无法在指定的时间段内看到该事件。返回序列化字符串后出了什么问题?

0 个答案:

没有答案