我正在使用later.js我正在尝试在 Meteor 中安排一个帖子。
我什至还没有进入调度部分,因为我无法理解later.js recur()
通过将时间段链接在一起是如何工作的,并执行一个函数,该函数最终会找到插入到 html 中的集合输出中的数据。
我想知道如何在指定日期运行该功能。月 'may'(5) 日 '15' 和时间 16:00。
我尝试了不同的配置但没有运气
这是我尝试的代码:
var sched = later.parse.recur().on(16).hour().and().on(15).dayOfMonth().and().on(5).month();
t = later.setTimeout(test, sched);
function test() {
console.log("insert Data");
}