在项目中有个每天0点执行的函数,本来想用setInterval来实现,但觉得这种需求以后应该还会有,自己写可能拓展性不高。
搜了一下发现了node-schedule这个包。
现在记录一下使用方法
node-schedule没次都是通过新建一个scheduleJob对象来执行具体方法。
时间数值按下表表示
* * * * * *
┬ ┬ ┬ ┬ ┬ ┬
│ │ │ │ │ |
│ │ │ │ │ └ [dayOfWeek]day of week (0 - 7) (0 or 7 is Sun)
│ │ │ │ └───── [month]month (1 - 12)
│ │ │ └────────── [date]day of month (1 - 31)
│ │ └─────────────── [hour]hour (0 - 23)
│ └──────────────────── [minute]minute (0 - 59)
└───────────────────────── [second]second (0 - 59, OPTIONAL)
使用node-schedule在指定时间执行方法
var schedule = require(‘node-schedule‘);
var date = new Date(2015, 11, 16, 16, 43, 0);
var j = schedule.scheduleJob(date, function(){
console.log(‘现在时间:‘,new Date());
});
在2015年12月16日16点43分0秒,打印当时时间
指定时间间隔执行方法
var rule = new schedule.RecurrenceRule();
rule.second = 10;
var j = schedule.scheduleJob(rule, function(){
console.log(‘现在时间:‘,new Date());
});
这是每当秒数为10时打印时间。如果想每隔10秒执行,设置 rule.second =[0,10,20,30,40,50]即可。
rule支持设置的值有second,minute,hour,date,dayOfWeek,month,year
同理:
每秒执行就是rule.second =[0,1,2,3......59]
每分钟0秒执行就是rule.second =0
每小时30分执行就是rule.minute =30;rule.second =0;
每天0点执行就是rule.hour =0;rule.minute =0;rule.second =0;
....
每月1号的10点就是rule.date =1;rule.hour =10;rule.minute =0;rule.second =0;
每周1,3,5的0点和12点就是rule.dayOfWeek =[1,3,5];rule.hour =[0,12];rule.minute =0;rule.second =0;
....
时间: 2024-10-31 04:29:08