我正在使用 fullcalendar,并且想从 8 月到 11 月每月(周一)重复一次事件。我已经能够重复该事件,但该事件在一周中的每个星期一在一个月内重复四次 - 而我需要在开始日期后的第一个星期一重复一次。以下日期范围与 DOW(星期几)参数一起传递。
var repeatingEvents = [{
title:"My repeating event",
id: 1,
start: '10:00',
end: '14:00',
dow: [ 1, 4 ],
ranges: [{ //repeating events are only displayed if they are within at least one of the following ranges.
start: moment().startOf('week'), //next two weeks
end: moment().endOf('week').add(7,'d'),
},{
start: moment('2015-02-01','YYYY-MM-DD'), //all of february
end: moment('2015-02-01','YYYY-MM-DD').endOf('month'),
},/*...other ranges*/],
},/*...other repeating events*/];
有什么办法可以每月重复一次,从开始日期到结束日期运行?任何援助将不胜感激