如何按事件 ID 将事件获取到完整日历 4.0 中



我正在使用完整日历 4.0,并尝试使用两种方法获取事件源记录,10411 是事件中的"id"归档值为:

{id : 10411,title : 'sample',start : 'date'}
var eventdetails = calendar.getEventSourceById('10411');
var eventdetails = calendar.getEventSourceById('clientEvents','10411');

请分享任何想法。

您似乎有一个事件,而不是事件源。(顾名思义,事件源定义了事件,即从中获取事件的位置,而不是单个事件。

获取单个事件有不同的方法 - 请参阅 https://fullcalendar.io/docs/Calendar-getEventById 和 https://fullcalendar.io/docs/Calendar-getEvents

所以在你的情况下,你会写

var eventdetails =  calendar.getEventById(10411);

相关内容

  • 没有找到相关文章

最新更新