首页 > 解决方案 > eventReceive:在每周日历上删除事件结束时返回 null

问题描述

我正在使用 fullcalendar 示例代码 external-dragging-builtin.html 我只添加了 eventReceive 参数。提醒事件标题和开始会返回数据。结束为空。我将代码放在 codepen 上供您查看。任何帮助都会很棒。谢谢。

 eventReceive: function(info) {
        alert(info.event.title);
        alert(info.event.start);
        alert(info.event.end);
 https://codepen.io/drinkingwine/pen/PoPmeEx?editors=0010

标签: nullfullcalendar

解决方案


好吧,这很奇怪。在 codepen 上玩了几个小时后……它正在工作。我不知道为什么,但它像宣传的那样工作。

我在 IT 领域工作了 26 年,主要从事大型机工作……我的调试技能一定是生疏了……


推荐阅读