我正在使用later.js我正在尝试在Meteor中安排一个帖子
我还没有进入调度部分因为我无法通过将时间段链接在一起来理解later.js recur()
如何工作,并执行一个函数,最终将找到插入html中的集合输出中的数据。
我想知道如何在指定日期运行该函数。月'可能'(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");
}
答案 0 :(得分:1)
我认为你最好使用percolate:synced-cron包为你做这些事情:)
README.md的基本示例:
SyncedCron.add({
name: 'Crunch some important numbers for the marketing department',
schedule: function(parser) {
// parser is a later.parse object
return parser.text('every 2 hours');
},
job: function() {
var numbersCrunched = CrushSomeNumbers();
return numbersCrunched;
}
});
答案 1 :(得分:0)
我希望这会有所帮助,而且为时不晚
<强> CODE 强>
var sched=later.parse.recur().on(15).dayOfMonth().on(5).month().on(16).hour(),
t = later.setTimeout(test, sched);
function test()
{
console.log("insert Data")
}