标签:oca htm ++ span timeout log nodejs localtime html
var later = require(‘later‘); later.date.localTime(); var basic = {h: [15], m: [40], s: [0]}; var composite = [ basic ]; var sched = { schedules: composite }; // 列举接下来10次触发的时间 var occurrences = later.schedule(sched).next(10); for (var i = 0; i < 10; i++) { console.log(occurrences[i]); } // execute logTime one time on the next occurrence of the text schedule var timer = later.setInterval(logTime, sched); //var timer = later.setTimeout(logTime, sched); // function to execute function logTime() { console.log("AAAAAAAAAAAAAAAAAAAAAAA"); console.log(new Date()); console.log("EEEEEEEEEEEEEEEEEEEEEEE"); }
http://bunkat.github.io/later/schedules.html
http://blog.fens.me/nodejs-cron-later/
标签:oca htm ++ span timeout log nodejs localtime html
原文地址:http://www.cnblogs.com/duhuo/p/6129025.html