我有一个 startDate 和一个 endDate 存储在 SQLite 数据库中,需要使用 javascript 计算两个日期时间之间的分钟和秒差。
例如:
startDate = 2012-10-07 11:01:13
endDate = 2012-10-07 12:42:13
我已经很好地阅读了关于 SO 的大量类似问题,但只能找到与计算相关的内容作为选择的一部分。
我有一个 startDate 和一个 endDate 存储在 SQLite 数据库中,需要使用 javascript 计算两个日期时间之间的分钟和秒差。
例如:
startDate = 2012-10-07 11:01:13
endDate = 2012-10-07 12:42:13
我已经很好地阅读了关于 SO 的大量类似问题,但只能找到与计算相关的内容作为选择的一部分。
将字符串转换为 JSDate
对象,减去日期,并使用一些算法从结果中计算小时/秒。就像是:
function convertMS(ms) {
var d, h, m, s, ts, tm, th;
s = ts = Math.floor(ms / 1000);
m = tm = Math.floor(s / 60);
s = s % 60;
h = th = Math.floor(m / 60);
m = m % 60;
d = Math.floor(h / 24);
h = h % 24;
return { d: d, h: h, m: m, s: s, tm: tm, th: th, ts: ts};
};
var start = new Date('2012-10-07 11:01:13'.split('-').join('/'))
,end = new Date('2012-10-07 12:42:13'.split('-').join('/'))
,dif = convertMS(end - start);
console.log(dif.h+':'+dif.m); //=> 1:41
console.log('total minutes dif: '+dif.tm); //=> total minutes dif: 101
console.log('total seconds dif: '+dif.ts); //=> total seconds dif: 6060
[根据评论编辑
]
以提供的格式“手动”解析日期字符串:
Date.tryParse = function(ds){
var arr = ds.match(/\d+/g)
,err = 'Expected at least yyyy'
,dat = arr.length && String(arr[0]).length === 4
? doParse.apply(null,arr) : err;
return dat;
function doParse(y,m,d,h,mi,s,ms){
var dat = new Date(+y,(+m-1)||0,+d||1,+h||0,+mi||0,+s||0,+ms||0);
return isNaN(dat) ? new Date : dat;
}
}
var start = Date.tryParse('2012-10-07 11:01:13'); //=> Sun Oct 07 2012 11:01:13
var test = Date.tryParse('2009'); //=> Sun Jan 01 2009 00:00:00
其他答案是正确的,但是浏览器不会始终如一地解析日期字符串(见下文),因此您应该手动解析字符串。OP 中的格式也与 ES5 中的格式不一致,部分浏览器无法正确解析。将 OP 格式转换为适用于所有浏览器的日期的简单函数是:
function stringToDate(s) {
s = s.split(/[-\/\. :]/);
return new Date(s[0], --s[1], s[2], s[3], s[4], s[5], 0)
}
有一些格式可以被所有浏览器解析,但是它们不符合标准,并且如果使用,则依赖于所有继续支持未指定格式的实现。
为了容忍格式错误的输入(额外的空格、不同的分隔符、额外的字符),match
可以使用代替split
:
function stringToDate(s) {
s = s.match(/\d+/g);
return new Date(s[0], --s[1], s[2], s[3], s[4], s[5], 0)
}
但是,由于这些值来自数据库并且已指定格式,因此日期字符串应符合该格式。首先不应该存储错误的数据。
为了完整起见,这里有一个函数可以做你想做的事情:
/* Return difference between two dates as minutes and seconds mm:ss.
* Input format is yyyy-mm-dd hh:mm:ss
* If strings don't converted to dates (incorrect format or invalid values),
* return undefined.
*/
function diffInMins(s0, s1) {
var diff;
// Convert strings to date ojbects
var d0 = stringToDate(s0);
var d1 = stringToDate(s1);
// Helper function to padd with leading zero
function z(n) {
return (n<10? '0' : '') + n;
}
// Check conversions
if (d0 && d1 && typeof d0 == 'object' && typeof d1 == 'object') {
// Return difference formatted as mm:ss
if (d0 && d1) {
diff = d1 - d0;
return z(diff/60000 | 0) + ':' + z(Math.round(diff%60000/1000));
}
}
}
关于将日期转换为纪元时间的毫秒,减去这些,并将结果从毫秒转换回您所需的单位,所有答案通常都是正确的(尽管其他地方提供的具体实现目前并不能准确地为您提供您所要求的 - - 即,只是两个日期时间之间的分钟数和秒数)。
不过,也请注意...
新日期('2012-10-07 12:42:13')
...这不是从 SQLite 日期字符串构造 Date 的可靠方法。
当您将字符串输入 Date 对象的构造函数时,您实际上是在调用Date.parse()
. 这在不同的浏览器上表现不同。
看一下这个:
> new Date('1-1-2012');
Sun Jan 01 2012 00:00:00 GMT-0800 (PST)
> new Date('01-01-2012');
Sun Jan 01 2012 00:00:00 GMT-0800 (PST)
> new Date('2012-1-1');
Sun Jan 01 2012 00:00:00 GMT-0800 (PST)
看起来很不错,对吧?但那是在 Chrome 上。
现在看看在最新版本的 Firefox 中发生了什么,调用完全相同:
> new Date('1-1-2012');
Date {Invalid Date}
> new Date('01-01-2012');
Date {Invalid Date}
> new Date('2012-1-1');
Date {Invalid Date}
> new Date('2012-01-01');
Date {Sat Dec 31 2011 16:00:00 GMT-0800 (PST)}
此外,在两种浏览器中查看此行为:
> new Date('2012-01-01');
Sat Dec 31 2011 16:00:00 GMT-0800 (PST)
简单地将零添加到月份和日期数字会导致时间扭曲!你必须设置时间和时区(对我来说,PST)才能让它消失:
> new Date('2012-01-01T00:00:00-08:00')
Sun Jan 01 2012 00:00:00 GMT-0800 (PST)
基本上,处理日期字符串解析是一件令人头疼的事情。你不想消化和解释这样的规范,this和this。
所以,这是一个更好的选择——将你的日期时间部分作为单独的参数传递给 Date 对象的构造函数。这将为您可靠地创建日期,因此您的后续比较是有效的。
新日期(年,月,日[,小时,分钟,秒,毫秒])
对于您的情况,初始化可能如下所示:
// Extract month, day, year from SQLite format, 'trimming' whitespace.
var sqlLiteSampleStr = "2012-10-07 11:01:13";
var re = /^\s*(\d{4})-(\d{2})-(\d{2}) (\d{2}):(\d{2}):(\d{2})\s*$/;
var match = re.exec(sqlLiteSampleStr);
if (match) {
var year = parseInt(match[1]);
var month = parseInt(match[2]) - 1; // Zero-indexed months.
var date = parseInt(match[3]);
var hour = parseInt(match[4]);
var minute = parseInt(match[5]);
var second = parseInt(match[6]);
var date = new Date(year, month, date, hour, minute, second);
}
注意:请注意时区注意事项。您似乎没有该 SQLite 格式片段中的任何时区数据。
更新
@james-j 澄清说他正在专门寻找分钟和秒。
这是一个提取分钟和秒的片段:
var msPerMin = 1000 * 60;
var min = Math.floor(timeInMs / msPerMin);
var timeInMs = timeInMs - (min * msPerMin);
var sec = Math.floor(timeInMs / 1000 );
JavaScript 实际上使减去日期变得非常简单。以下是它的工作原理:
// Create Date objects from the strings
startDate = new Date('2012-10-07 11:01:13');
endDate = new Date('2012-10-07 12:42:13');
// Subtract Date objects to return milliseconds between them
millisecondsBetween = (endDate - startDate);
// Convert to whatever you like
alert(millisecondsBetween/1000/60 + ' minutes');