Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要每天运行一次 node-cron 计划,即每 24 小时运行一次。我可以在不指定时间的情况下这样做吗?
var job = new CronJob('0 0 0 * * *', function() { })
你不能在不指定时间的情况下做到这一点,因为 cron 需要时间来执行回调函数。
您可以使用“0 0 */1 * *”,它将在“每月每天 00:00”执行
var job = new CronJob('0 0 */1 * *', function() { // here goes things you want to execute })