gpt4 book ai didi

node.js - 如何在每天凌晨 12 点设置 Node 时间表

转载 作者:搜寻专家 更新时间:2023-10-31 22:39:12 24 4
gpt4 key购买 nike

我正在使用 node-schedule 来安排我的任务。现在我需要在每天凌晨 12 点安排一份工作。下面给出的是我正在使用的代码,

var rule3 = schedule.scheduleJob('00 00 00 * * *', function(){
console.log('my test job!');
});

这对我不起作用。

感谢任何帮助。提前致谢。

最佳答案

您可以简单地使用node-cron模块。

var CronJob = require('cron').CronJob;
var job = new CronJob('00 00 12 * * 0-6', function() {
/*
* Runs every day
* at 12:00:00 AM.
*/
}, function () {
/* This function is executed when the job stops */
},
true, /* Start the job right now */
timeZone /* Time zone of this job. */
);

阅读docs更多模式。

关于node.js - 如何在每天凌晨 12 点设置 Node 时间表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33366847/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com