- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想减去两个日期以获得它们之间的差异。小时和分钟是我感兴趣的。这两个日期将始终在同一天。
我有以下代码:
const differenceAsDate = new Date(toTime.getTime() - fromTime.getTime());
我们假设toTime = Wed Mar 18 2020 07:00:00 GMT+0100
和fromTime = Wed Mar 18 2020 08:00:00 GMT+0100
所以它们相隔一小时。
此结果日期是 Thu Jan 01 1970 02:00:00 GMT+0100
。我该如何解决这个问题?
最佳答案
您可以减去您的时间,然后通过以下代码获取分钟和小时:
const differenceAsDate = Math.abs(toTime.getTime() - fromTime.getTime());
const minute = (differenceAsDate / 6e4)%60;
const hour = parseInt((differenceAsDate / 36e5), 10);
console.log({hour, minute});
关于javascript - 两个日期相减会导致小时数不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60747364/
这个问题已经有答案了: Diff of two Dataframes (8 个回答) 已关闭 4 年前。 我有 2 个数据框(df_a 和 df_b),有 2 列:“动物”和“名称”。 在更大的数据框
如果我得到以下数字字符串,是否可以使用 LINQ 查询将这些数字一起加/减? string numbers = "1 + 1, 2 - 1, 3 + 3"; 所以我最终会得到这样的东西: 字符串数字
具有以下对象列表: public class Example { public string Local { get; set; } public string Type { get;
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
#include #include float sum (float *A, int len) // sum of table of floats { float ss = 0.0;
我正在阅读这篇博文:https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/ 我很困惑: size_t len = end
我正在阅读这篇博文:https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/ 我很困惑: size_t len = end
这个问题已经有答案了: Pointer Arithmetic In C (2 个回答) Pointer subtraction confusion (8 个回答) 已关闭 4 年前。 int vect
我知道这可能是个愚蠢的问题,但我遇到了一些麻烦,我很惭愧,但我真的不知道如何做到。我想加减两个以整数形式给出的“小时”。 #include #include #include using nam
大家好 StackOverflow.. 这个网站相当新,但我得到了很好的反馈!所以首先要感谢大家! 我想做的是类似于wonga的事情 https://www.wonga.com/ 但是随着值的协同工作
我是一名优秀的程序员,十分优秀!