如何获取JavaScript中的UTC时间戳?
在编写Web应用程序时,将 所有 日期时间(服务器端)存储在数据库中作为UTC时间戳是有意义的。
当我发现您无法在JavaScript中对时区进行操作方面自然无法做到这一点时,我感到非常惊讶。
我稍微扩展了Date对象。这个功能有意义吗?基本上,每次我向服务器发送任何内容时,都会使用该功能格式化时间戳记。
您在这里看到任何重大问题吗?还是从另一个角度解决问题?
Date.prototype.getUTCTime = function(){ return new Date(
this.getUTCFullYear(),
this.getUTCMonth(),
this.getUTCDate(),
this.getUTCHours(),
this.getUTCMinutes(),
this.getUTCSeconds()
).getTime();
}
在我看来,这有点令人费解。而且我也不确定性能。
回答:
以这种方式构造的日期使用本地时区,从而使构造的日期不正确。设置某个日期对象的时区是从包含时区的日期字符串中构造它。(我无法在较旧的Android浏览器中正常运行。)
请注意,
getTime()
返回毫秒,而不是普通秒。
对于UTC / Unix时间戳,以下内容就足够了:
Math.floor((new Date()).getTime() / 1000)
它将当前时区偏移量计入结果。对于字符串表示形式,DavidEllis的答案有效。
澄清:
new Date(Y, M, D, h, m, s)
该输入被视为本地时间。如果传递了UTC时间,结果将有所不同。观察(我现在是格林尼治标准时间+02:00,现在是07:50):
> var d1 = new Date();> d1.toUTCString();
"Sun, 18 Mar 2012 05:50:34 GMT" // two hours less than my local time
> Math.floor(d1.getTime()/ 1000)
1332049834
> var d2 = new Date( d1.getUTCFullYear(), d1.getUTCMonth(), d1.getUTCDate(), d1.getUTCHours(), d1.getUTCMinutes(), d1.getUTCSeconds() );
> d2.toUTCString();
"Sun, 18 Mar 2012 03:50:34 GMT" // four hours less than my local time, and two hours less than the original time - because my GMT+2 input was interpreted as GMT+0!
> Math.floor(d2.getTime()/ 1000)
1332042634
另请注意,getUTCDate()
不能代替getUTCDay()
。这是因为getUTCDate()
返回月份中的某天;相反,getUTCDay()
返回星期几 。
以上是 如何获取JavaScript中的UTC时间戳? 的全部内容, 来源链接: utcz.com/qa/434600.html