我需要比较两个不同的日期时间字符串(形成: YYYY-MM-DD'T'HH:mm )。
以下是日期时间字符串:
var a = ("2017-05-02T10:45");
var b = ("2017-05-02T12:15");
我已经将日期切成了它们所以我只需要时间(形成: HH:mm )。
var now = a.slice(11, 16);
var then = b.slice(11, 16);
// now = 10:45
// then = 12:15
我有什么方法可以解决这两次之间的差异吗?
结果应如下所示:
1 hour 30 minutes
此外,如果日期不同,是否有任何简单的解决方案来获得日期差异?
答案 0 :(得分:3)
使用javascript日期:
var a = ("2017-05-02T10:45");
var b = ("2017-05-02T12:15");
var milliseconds = ((new Date(a)) - (new Date(b)));
var minutes = milliseconds / (60000);
答案 1 :(得分:1)
这应该让你开始:
d1 = new Date(Date.parse("2017-05-02T10:45"));
d2 = new Date(Date.parse("2017-05-02T12:15"));
var getDuration = function(d1, d2) {
d3 = new Date(d2 - d1);
d0 = new Date(0);
return {
getHours: function(){
return d3.getHours() - d0.getHours();
},
getMinutes: function(){
return d3.getMinutes() - d0.getMinutes();
},
getMilliseconds: function() {
return d3.getMilliseconds() - d0.getMilliseconds();
},
toString: function(){
return this.getHours() + ":" +
this.getMinutes() + ":" +
this.getMilliseconds();
},
};
}
diff = getDuration(d1, d2);
console.log(diff.toString());
或使用momentjs因为,1。经过充分测试并跟踪错误。 2.从头开始编码是一种有趣的学习体验,但如果你在公司环境中,从头开始编码会浪费时间(因而也就是金钱)。
答案 2 :(得分:1)
我有一个lib来使这个变得简单:
维基:https://github.com/jiangbai333/Common-tools/wiki/format 代码:https://github.com/jiangbai333/Common-tools/blob/dev/string/string.js
在你的文件中包含string.js,然后:
var temp = "short-stamp".format(+new Date("2017-05-02T12:15")) - "short-stamp".format(+new Date("2017-05-02T10:45"));
console.log(parseInt(temp / 3600), "hour", parseInt(temp % 3600 / 60), "minutes")