TypeScript:以天为单位获取两个日期之间的差异

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/43735678/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-09 07:43:24  来源:igfitidea点击:

TypeScript: Get difference between two dates in days

typescript

提问by Jordi

I need to get the difference between two dates in days.

我需要以天为单位计算两个日期之间的差异。

Up to now, I've been able to get the difference between two dates, but not in days:

到目前为止,我已经能够得到两个日期之间的差异,但不能以天为单位:

date1.getTime() - date2.getTime();

Any ideas?

有任何想法吗?

回答by mohammad

var diff = Math.abs(date1.getTime() - date2.getTime());
var diffDays = Math.ceil(diff / (1000 * 3600 * 24)); 

回答by Roy Dictus

I believe the shortest route is:

我相信最短的路线是:

var diff = date1.valueOf() - date2.valueOf();