const diffDays = (d1, d2) => (d1 - d2) / (1000 * 60 * 60 * 24);
// diffDays(new Date('2022-12-12 10:10:10'), new Date('2022-10-10 12:12:10')).toFixed(2)
最近刚刚在自己博客添加了这个功能,不知道是否是想要的,如下图:
具体代码如下:
data() {
return {
starttime: `2018/12/27 00:00:00`
}
},
methods: {
timeInterval() {
this.timer = setInterval(() => {
// console.log(this.intervalTime);
const start = moment(this.starttime).valueOf();
const current = moment().valueOf();
const time = parseInt((current - start)/1000/60/60/24) // 天
const time1 = parseInt((current - start)/1000/3600) // 时
const time2 = parseInt((current - start)/1000/60) // 分
const time3 = parseInt((current - start)/1000) // 秒
const result = `${time}天${time1 - time*24}时${time2 - time1*60}分${time3 - time2*60}秒`;
this.intervalTime = result;
}, 1000);
}
}
博客预览地址是:herrylo的博客
「嘿嘿:我这不需要精确到时分秒」
那简单,const diffDays = (d1, d2) => Math.floor((d1 - d2) / 86400000)
没必要用类似 moment
这样的库,直接上代码:
const a = Date.parse("2022-11-28");
const b = Date.parse("2022-11-29");
// 相隔多少天的结果, 没满一天按一天算,如果不满的ceil换成floor
const d1 = Math.ceil(Math.abs(b - a) / 86400000);
8 回答5.8k 阅读✓ 已解决
9 回答9.2k 阅读
6 回答4.7k 阅读✓ 已解决
5 回答3.5k 阅读✓ 已解决
3 回答10.3k 阅读✓ 已解决
4 回答7.9k 阅读✓ 已解决
7 回答9.8k 阅读