我正在使用该moment-recur
软件包,并且正在尝试创建一个包含根据某些规则发生的所有日期的数组。为此,我正在使用
recurrence.all("L")
.
使用下一个对象调用此方法会返回一个空数组:
{
start: moment.utc("2018-01-04T22:00:00.000+00:00"),
end: moment.utc("2019-01-04T22:00:00.000+00:00"),
rules:
[ { measure: 'daysOfWeek', units: { '0': true, '1': true, '5': true}},
{ measure: 'weeks', units:{ '2': true } } ],
exceptions: [],
units: null,
measure: null,
from: null
}
我怎样才能让它工作?有没有其他方法可以处理多个规则?
谢谢!