js如何计算两个日期之间间隔了多少天?
回答:
this.startDate = this.$moment(this.form.date_time[0]).format('YYYY-MM-DD') this.endDate = this.$moment(this.form.date_time[1]).format('YYYY-MM-DD')
const sDate = Date.parse(this.startDate)
const eDate = Date.parse(this.endDate)
const days = (eDate - sDate) / (1 * 24 * 60 * 60 * 1000) //间隔时间
回答:
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);
以上是 js如何计算两个日期之间间隔了多少天? 的全部内容, 来源链接: utcz.com/p/933302.html