Node.js中基于node-schedule实现定时任务之详解
const schedule = require('node-schedule');
// 定义任务
const job = schedule.scheduleJob('* * * * *', function(){
console.log('执行定时任务:', new Date());
});
// 取消任务
// job.cancel();
这段代码演示了如何使用node-schedule
库来创建一个简单的定时任务。scheduleJob
方法接受两个参数,第一个是cron风格的时间字符串,指定任务执行的时间,第二个是任务的回调函数,在指定时间执行。如果需要取消任务,可以调用任务对象的cancel
方法。
评论已关闭