我有以下 cron 作业,需要每天早上 6 点和 9 点执行。
cron.schedule('00 00 6,9 * * 0-6', function() {
alertAllMembersWithAppointments();//executed everyday at 6 and 9AM});
当我这样设置时间时
cron.schedule('* * * * * *', function() {
alertAllMembersWithAppointments();//executed everyday at 6 and 9AM
});
它工作正常并且每分钟执行一次。请帮助设置时间,因为在我看来 node 和 linux 的 cron 设置完全不同。我正在使用以下要求const cron = require("node-cron");