我在语法设置日历事件时遇到问题。
我有一个页面,用户可以在其中使用下拉菜单选择要显示事件的客户端。我通过Ajax调用请求事件。这一切看起来都很好。但我在设置fullCalendar中的事件时遇到问题。
这是我设置事件的代码:
success: function(resp){
var r = resp.output;
console.dir(r);
jQuery('#student').html(r.studentname);
jQuery('#calendar').fullCalendar( 'removeEvents' ); // <= This works
jQuery('#calendar').fullCalendar( 'events', r.events ); // <= This doesn't
}
这是ajax响应的转储:
events "[{
id: 1,
title: 'Acupuncture',
start: new Date(2013, 5, 29, 10, 00),
end: new Date(2013, 5, 29, 10, 30),
allDay: false
}
,
{
id: 2,
title: 'Acupuncture',
start: new Date(2013, 6, 30, 10, 00),
end: new Date(2013, 6, 30, 10, 30),
allDay: false
}
,
{
id: 3,
title: 'Chiropractor',
start: new Date(2013, 6, 31, 11, 00),
end: new Date(2013, 6, 31, 11, 15),
allDay: false
}
]
"
id "1"
studentname "Tarah Yates"
我找不到任何关于如何做到这一点的例子,所以我不确定我做得是否正确。
我刚刚注意到事件列表周围的引号,也许这就是问题所在?
如果这不是问题所在,有人想过为什么它不起作用吗?
gwardell需要迭代响应,以便获取数组的元素。但我会将响应类型更改为JSON,如下所示:
[{
"id": "1",
"title": "Acupuncture",
"start": "29-05-2013 10:00", //adapted this date format is accepted by fullcalendar
"end": "29-05-2013 10:30",
"allDay": false //You dont need to adapt this it was a mistake of me. Leave it be.
},etc, etc, etc]
请注意,只能有简单的JSON,不能有带有子数组的复杂JSON的响应
PS.-去学习一下NET上的JSON格式,我相信你会明白的。
不确定那一行,但你想做的事情只会在你在那里的时候在那个视图中创建事件,当你切换到其他视图时会消失。您要做的是保存到数据库或用于存储数据以存储事件的任何内容。然后它们将持续存在,当您引用时,事件将结束。。。所以jQuery('#calendar').fullCalendar('events','refetchevents');
假设使用JSON和Jquery ajax,如何在ajax调用中传递ID
$.ajax({
type: 'POST',
url: _url,
data: {'id': 9999, //Just pass like this or you can set like a function 'id':getMyID(),
'title':name,
'start':start,
'end':end,
'allDay': allDay,
'editable': true,
},
success: function(data) {
//TODO Do stuff
}
});
或者如果您有一系列事件源
var othersources = {
ausencias: {
url: _url,
type: 'POST',
data:{
'id':getMyId(), // 'id':myidvalue
'func':func,
'year':y
},
cache: false,
color: '#C1272D',
textColor: 'white'
}}