0

我最近开始使用 Later.js 库,并且在复合计划上使用“isValid”函数时遇到了这个问题。由于我是新手,我可能会犯一些常见的错误。请指导相同。我在下面添加代码片段和错误消息。

var schedule = 

later.parse.recur()
.on(25).dayOfMonth().on(5).month().on(2016).year()
.and()
.on(26).dayOfMonth().on(5).month().on(2016).year()
.and()
.on(27).dayOfMonth().on(5).month().on(2016).year()

var sched = later.schedule(schedule);
var ans = sched.isValid(new Date('2016-05-27'));
console.log(ans);

这是错误消息

f:\Projects\DragonFly\node_modules\later\later.js:777
return !b || a.getTime() > b.getTime();
^


TypeError: a.getTime is not a function
at f:\Projects\DragonFly\node_modules\later\later.js:777:24
at findNext (f:\Projects\DragonFly\node_modules\later\later.js:785:23)
at getInstances (f:\Projects\DragonFly\node_modules\later\later.js:637:52)
at Object.later.schedule.sched.isValid (f:\Projects\DragonFly\node_modules\later\later.js:793:16)
at Object.<anonymous> (f:\Projects\DragonFly\Controllers\scheduleController.js:76:17)

我将 Later.js 更新到最新版本,但没有成功。请告诉我我是否在代码中犯了任何错误,还是库本身的错误?

4

0 回答 0