如果我用 node-schedule 来创建定时任务 要设定为每5分钟执行一次 只能用笨办法设定 5 10 15 。。等时间来运行 。。 有什么简单的方法来实现 每5分钟进行定时任务?
setInterval(function() { //you task here }, 5 * 60 * 1000);
@newghost 感谢