作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
你知道生成每10分钟推进一次的日期数据并放入数组的好方法吗?
let dts:Dates = new array();
let dt: Date = new Date('2019-05-03T06:00:00');
let dt2: Date = new Date('2019-05-03T06:00:00');
let dt3: Date = new Date('2019-05-03T06:00:00');
dt.setMinutes(dt.getMinutes() + 10);
console.log(dt);
dt2.setMinutes(dt.getMinutes() + 10);
console.log(dt2);
dt3.setMinutes(dt2.getMinutes() + 10);
console.log(dt3);
while(dt.getTime()<= 6 ){ // I would like from 6:00 , 6:20 ... (7:00) Is it impossible to add 7:00?
dt.setMinutes(dt.getMinutes() + 10);
console.log(dt);
}
最佳答案
var origDateObj = new Date();
var updatedDateObj = new Date();
//The 10 in the line below will determine the amount of time added.
updatedDateObj.setTime(origDateObj.getTime() + (10 * 60 * 1000));
console.log(updatedDateObj);
关于javascript - 如何每十分钟获取一次日期数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58205798/
我是一名优秀的程序员,十分优秀!