例如,东部和中部的差异是1。我下面的解决方案感觉很糟糕。有没有更简单/更好的方法?
var diff = (parseInt(moment().tz("America/New_York").format("ZZ")) - parseInt(moment().tz("America/Chicago").format("ZZ"))) / 100;
我的例子是使用Momentjs库。
例如,东部和中部的差异是1。我下面的解决方案感觉很糟糕。有没有更简单/更好的方法?
var diff = (parseInt(moment().tz("America/New_York").format("ZZ")) - parseInt(moment().tz("America/Chicago").format("ZZ"))) / 100;
我的例子是使用Momentjs库。
计算任意两个时区之间的差异是不可能的。您只能计算特定时刻的差异。
这在两个时区之间的一般情况下是正确的。然而,有些时区要么完全同时切换,要么根本不切换。
请记住,在美国,使用 DST 的每个时区实际上在不同的时间切换。他们都在各自的上午2:00切换本地时间,但不能在同一通用的时间的时刻。
现在关于时刻时区,您在评论中说:
Web 服务器位于东部时区;我们在中环。我需要用户时区和服务器的差异。
Web 服务器的时区无关紧要。您应该能够在世界任何地方进行托管,而不会影响您的应用程序。如果你不能,那么你就做错了。
你可以得到当前的时间差的时区(美国中部时间)和用户。如果代码在浏览器中运行,您甚至不需要为此知道用户的确切时区:
var now = moment();
var localOffset = now.utcOffset();
now.tz("America/Chicago"); // your time zone, not necessarily the server's
var centralOffset = now.utcOffset();
var diffInMinutes = localOffset - centralOffset;
相反,如果代码是在服务器上运行(在node.js的应用程序),那么你就需要知道用户的时区。只需像这样更改第一行:
var now = moment.tz("America/New_York"); // their time zone
在支持 ECMAScript 国际化 API 并完全实现 IANA 时区支持的环境中,这可以在没有Moment 的情况下完成。这是当今大多数浏览器。
function getTimeZoneOffset(date, timeZone) {
// Abuse the Intl API to get a local ISO 8601 string for a given time zone.
let iso = date.toLocaleString('en-CA', { timeZone, hour12: false }).replace(', ', 'T');
// Include the milliseconds from the original timestamp
iso += '.' + date.getMilliseconds().toString().padStart(3, '0');
// Lie to the Date object constructor that it's a UTC time.
const lie = new Date(iso + 'Z');
// Return the difference in timestamps, as minutes
// Positive values are West of GMT, opposite of ISO 8601
// this matches the output of `Date.getTimeZoneOffset`
return -(lie - date) / 60 / 1000;
}
用法示例:
getTimeZoneOffset(new Date(2020, 3, 13), 'America/New_York') //=> 240
getTimeZoneOffset(new Date(2020, 3, 13), 'Asia/Shanghai') //=> -480
如果你想要它们之间的差异,你可以简单地减去结果。
上述函数适用于安装了full-icu 国际化支持的Node.js (这是 Node 13 和更新版本的默认设置)。如果您有带有system-icu或的旧版本small-icu,则可以使用此修改后的功能。它也适用于浏览器和full-icu环境,但要大一些。(我已经在 Linux 上的 Node 8.17.0 和 Windows 上的 Node 12.13.1 上对此进行了测试。)
function getTimeZoneOffset(date, timeZone) {
// Abuse the Intl API to get a local ISO 8601 string for a given time zone.
const options = {timeZone, calendar: 'iso8601', year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit', hour12: false};
const dateTimeFormat = new Intl.DateTimeFormat(undefined, options);
const parts = dateTimeFormat.formatToParts(date);
const map = new Map(parts.map(x => [x.type, x.value]));
const year = map.get('year');
const month = map.get('month');
const day = map.get('day');
const hour = map.get('hour');
const minute = map.get('minute');
const second = map.get('second');
const ms = date.getMilliseconds().toString().padStart(3, '0');
const iso = `${year}-${month}-${day}T${hour}:${minute}:${second}.${ms}`;
// Lie to the Date object constructor that it's a UTC time.
const lie = new Date(iso + 'Z');
// Return the difference in timestamps, as minutes
// Positive values are West of GMT, opposite of ISO 8601
// this matches the output of `Date.getTimeZoneOffset`
return -(lie - date) / 60 / 1000;
}
请注意,无论哪种方式,我们都必须通过Intl正确应用时区。
由于夏令时(dst)等原因,两个时区之间的差异只能在特定时间进行测量。
但是,对于特定日期,下面的代码应该可以工作。
function getOffsetBetweenTimezonesForDate(date, timezone1, timezone2) {
const timezone1Date = convertDateToAnotherTimeZone(date, timezone1);
const timezone2Date = convertDateToAnotherTimeZone(date, timezone2);
return timezone1Date.getTime() - timezone2Date.getTime();
}
function convertDateToAnotherTimeZone(date, timezone) {
const dateString = date.toLocaleString('en-US', {
timeZone: timezone
});
return new Date(dateString);
}
偏移/差异以毫秒为单位
那么你所要做的就是:
const offset = getOffsetBetweenTimezonesForDate(date, 'America/New_York', 'America/Chicago');