eventDrop: function(event, dayDelta, revertAction) {
$.post("/calendar/",{id: event.id } ,
function(result) {
if (result == "succeed"){
alert('succeed');
}
else{
alert("Server error, Please try again");
}
},"json");
}
所以在这个方法中,我有一个ajax调用。我希望只有在从服务器返回成功时才更新日历,否则它什么都不做。这种代码是如何编写的?
答案 0 :(得分:2)
http://arshaw.com/fullcalendar/docs/event_rendering/rerenderEvents/
.fullCalendar( 'rerenderEvents' )
答案 1 :(得分:0)
$.post("/calendar/", {id: event.id },
function (data, textStatus, XMLHttpRequest) {
// use data if textStatus == 200
},
"json"
);
??请参阅jQuery.post()文档