我实现了动态cron启动。在新的启动之前如何组织旧的cron?我使用库'node-cron'
function test() {
db.test.findOne({id: 1},)
.then(res => {
if (!res)
return Promise.reject(' backup not found');
let job = cron.schedule(res.cronTime, function () {
test1();
});
console.log(job)
})
}
cron.schedule('* * * * *', () =>
test();
return true;
});