在項目中有個天天0點執行的函數,原本想用setInterval來實現,但以爲這種需求之後應該還會有,本身寫可能拓展性不高。
搜了一下發現了node-schedule這個包。
如今記錄一下使用方法node
node-schedule沒次都是經過新建一個scheduleJob對象來執行具體方法。git
* * * * * * ┬ ┬ ┬ ┬ ┬ ┬ │ │ │ │ │ | │ │ │ │ │ └ [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)
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秒,打印當時時間github
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;
....函數