是否可以在 fullcalendar(Angular) 中仅编辑 repeating/recurring 事件中的一个事件?

Is it possible to edit only one event of repeating/recurring event in fullcalendar(Angular)?

如何只编辑一个事件而不编辑 angular 中的所有重复事件。

 events: [
{
  title: 'blueEvents',
  daysOfWeek: [ '4' ],
  startTime: '10:45:00',
  endTime: '12:45:00'
},

Fullcalendar 对重复事件的支持相当有限。对于附加功能,您可以使用 RRule 插件:https://fullcalendar.io/docs/v4/rrule-plugin

如果您想使用交互插件(即能够拖放和调整事件大小),您可以使用 groupId 参数来指定定义中的所有事件何时一起移动,如文档所述:https://fullcalendar.io/docs/v4/recurring-events

理论上,为了仅更改重复事件的一个实例,您可以克隆它并将其作为单独的元素进行编辑,然后更改原始重复事件以排除您正在更改的日期。

也许这些问题可能对您有所帮助:Fullcalendar recurring event exclusion