从 Date 对象计算 BST 时间?
Calculating BST time from Date object?
我已经回顾了一些关于类似主题的问题,但其中 none 涉及计算目的地时区,将 其 DST(夏令时)纳入帐户。我正在尝试编写一个简单的小部件,向访问该页面的任何人显示特定时区的实时本地时间。感兴趣的时区是 BST (what is BST?),但如果可能的话,我希望看到任何语言环境的通用实现。这是我的尝试,使用 vanilla JavaScript:
function getBST() {
var date = new Date(),
utc = date.getTime() + date.getTimezoneOffset() * 60000,
local = new Date(utc), // this is GMT, not BST
day = local.getDate(),
mon = local.getMonth() + 1,
year = local.getFullYear(),
hour = local.getHours(),
minute = ('0' + local.getMinutes()).slice(-2),
second = ('0' + local.getSeconds()).slice(-2),
suffix = hour < 12 ? 'AM' : 'PM';
hour = (hour - 24) % 12 + 12;
return mon + '/' + day + '/' + year + ', ' + hour + ':' + minute + ':' + second + ' ' + suffix;
}
setInterval(function () {
document.body.textContent = getBST();
}, 1000);
根据@RobG的回答,我写了这段代码:
function resetDay(date) {
date.setUTCMilliseconds(0);
date.setUTCSeconds(0);
date.setUTCMinutes(0);
date.setUTCHours(1);
return date;
}
function lastDay(date, day) {
while (date.getUTCDay() !== day) {
date.setUTCDate(date.getUTCDate() - 1);
}
return date;
}
function adjustDST(date, begin, end) {
if (date >= begin && date < end) {
date.setUTCHours(date.getUTCHours() + 1);
}
return date;
}
function updateBST() {
var date = new Date();
var begin = resetDay(new Date());
begin.setUTCMonth(3, -1);
begin = lastDay(begin, 0);
var end = resetDay(new Date());
end.setUTCMonth(10, -1);
end = lastDay(end, 0);
date = adjustDST(date, begin, end);
var day = date.getUTCDate(),
mon = date.getUTCMonth() + 1,
year = date.getUTCFullYear(),
hour = date.getUTCHours(),
minute = ('0' + date.getUTCMinutes()).slice(-2),
second = ('0' + date.getUTCSeconds()).slice(-2),
suffix = hour < 12 ? 'AM' : 'PM';
hour = (hour - 24) % 12 + 12;
return mon + '/' + day + '/' + year + ', ' + hour + ':' + minute + ':' + second + ' ' + suffix;
}
setInterval(function () {
document.body.textContent = updateBST();
}, 1000);
我通过在调试器中暂停并更改当前日期的月份来测试 BST,输出是一个小时后的,所以它似乎工作正常。感谢大家的帮助!
在纯 JS 中是不可能的,仅使用 Date
方法,但是(当然)有一个库:http://momentjs.com/timezone/
示例:
moment.tz("Europe/London").format(); // 2016-01-15T09:21:08-07:00
支持一个时区并不困难,只要您知道它何时转换为夏令时。
A javascript 日期由 UTC 时间值和基于主机系统设置的时区偏移量组成。因此,您需要做的就是将您想要的时区偏移量应用到 UTC 时间,很快,任何时区都有您的时间。
虽然有一些事实上的标准(例如 IATA timezone codes and IANA timezones),但没有标准的时区缩写系统。我猜 BST 是指英国夏令时,也称为英国夏令时 (BDT) 和英国夏令时 (BDST)。它也可能是孟加拉国标准时间或布干维尔标准时间,也称为 "BST"。
有各种使用 IANA 代码的库(例如 Moment Timezone)可以随时(或多或少)提供任何支持的时区的时间。
BST从每年3月的最后一个星期日01:00UTC开始,到每年10月的最后一个星期日01:00UTC结束,所以算法是:
- 根据系统的本地设置创建新日期(例如
new Date()
)
- 根据 UTC 值创建 BST 的开始和结束日期(今年为 2016-03-27T01:00:00Z 和 2016-03-30T02:00:00Z)
- 查看当前 UTC 时间是否在该范围内
- 如果是,则将在#1 中创建的日期的 UTC 时间增加 1 小时
- 根据日期的 UTC 值输出格式化字符串
就是这样,唯一困难的部分是找到合适的星期日约会。您根本不需要考虑本地时区偏移量,因为一切都基于 UTC,Date 对象也是如此。
目前我没有时间提供代码,所以请尝试一下,我会在大约 10 小时内回复您。
编辑
这是代码。前两个函数是帮助函数,一个获取一个月中的最后一个星期日,另一个格式化带偏移量的 ISO 8601 字符串。大部分工作都在这两个函数中。希望评论足够了,如果需要更多解释,请询问。
我没有在字符串中包含毫秒,如果你想添加它们,请在格式化字符串的偏移部分之前添加 + '.' + ('00' + d.getUTCMilliseconds()).slice(-3)
。
请注意,如果开始或停止夏令时的日期发生变化,则需要修改该函数,但这种情况并不常见。历史日期当然需要一个小型数据库来记录特定年份和时期的夏令时开始和停止时间。
/* Return a Date for the last Sunday in a month
** @param {number} year - full year number (e.g. 2015)
** @param {number} month - calendar month number (jan=1)
** @returns {Date} date for last Sunday in given month
*/
function getLastSunday(year, month) {
// Create date for last day in month
var d = new Date(year, month, 0);
// Adjust to previous Sunday
d.setDate(d.getDate() - d.getDay());
return d;
}
/* Format a date string as ISO 8601 with supplied offset
** @param {Date} date - date to format
** @param {number} offset - offset in minutes (+east, -west), will be
** converted to +/-00:00
** @returns {string} formatted date and time
**
** Note that javascript Date offsets are opposite: -east, +west but
** this function doesn't use the Date's offset.
*/
function formatDate(d, offset) {
function z(n){return ('0'+n).slice(-2)}
// Default offset to 0
offset = offset || 0;
// Generate offset string
var offSign = offset < 0? '-' : '+';
offset = Math.abs(offset);
var offString = offSign + ('0'+(offset/60|0)).slice(-2) + ':' + ('0'+(offset%60)).slice(-2);
// Generate date string
return d.getUTCFullYear() + '-' + z(d.getUTCMonth()+1) + '-' + z(d.getUTCDate()) +
'T' + z(d.getUTCHours()) + ':' + z(d.getUTCMinutes()) + ':' + z(d.getUTCSeconds()) +
offString;
}
/* Return Date object for current time in London. Assumes
** daylight saving starts at 01:00 UTC on last Sunday in March
** and ends at 01:00 UTC on the last Sunday in October.
** @param {Date} d - date to test. Default to current
** system date and time
** @param {boolean, optional} obj - if true, return a Date object. Otherwise, return
** an ISO 8601 formatted string
*/
function getLondonTime(d, obj) {
// Use provided date or default to current date and time
d = d || new Date();
// Get start and end dates for daylight saving for supplied date's year
// Set UTC date values and time to 01:00
var dstS = getLastSunday(d.getFullYear(), 3);
var dstE = getLastSunday(d.getFullYear(), 10);
dstS = new Date(Date.UTC(dstS.getFullYear(), dstS.getMonth(), dstS.getDate(),1));
dstE = new Date(Date.UTC(dstE.getFullYear(), dstE.getMonth(), dstE.getDate(),1));
// If date is between dstStart and dstEnd, add 1 hour to UTC time
// and format using +60 offset
if (d > dstS && d < dstE) {
d.setUTCHours(d.getUTCHours() +1);
return formatDate(d, 60);
}
// Otherwise, don't adjust and format with 00 offset
return obj? d : formatDate(d);
}
document.write('Current London time: ' + getLondonTime(new Date()));
伦敦时间/英国夏令时:
const now = new Date();
console.log(now.toLocaleString('en-GB', { timeZone: 'Europe/London' }));
我已经回顾了一些关于类似主题的问题,但其中 none 涉及计算目的地时区,将 其 DST(夏令时)纳入帐户。我正在尝试编写一个简单的小部件,向访问该页面的任何人显示特定时区的实时本地时间。感兴趣的时区是 BST (what is BST?),但如果可能的话,我希望看到任何语言环境的通用实现。这是我的尝试,使用 vanilla JavaScript:
function getBST() {
var date = new Date(),
utc = date.getTime() + date.getTimezoneOffset() * 60000,
local = new Date(utc), // this is GMT, not BST
day = local.getDate(),
mon = local.getMonth() + 1,
year = local.getFullYear(),
hour = local.getHours(),
minute = ('0' + local.getMinutes()).slice(-2),
second = ('0' + local.getSeconds()).slice(-2),
suffix = hour < 12 ? 'AM' : 'PM';
hour = (hour - 24) % 12 + 12;
return mon + '/' + day + '/' + year + ', ' + hour + ':' + minute + ':' + second + ' ' + suffix;
}
setInterval(function () {
document.body.textContent = getBST();
}, 1000);
根据@RobG的回答,我写了这段代码:
function resetDay(date) {
date.setUTCMilliseconds(0);
date.setUTCSeconds(0);
date.setUTCMinutes(0);
date.setUTCHours(1);
return date;
}
function lastDay(date, day) {
while (date.getUTCDay() !== day) {
date.setUTCDate(date.getUTCDate() - 1);
}
return date;
}
function adjustDST(date, begin, end) {
if (date >= begin && date < end) {
date.setUTCHours(date.getUTCHours() + 1);
}
return date;
}
function updateBST() {
var date = new Date();
var begin = resetDay(new Date());
begin.setUTCMonth(3, -1);
begin = lastDay(begin, 0);
var end = resetDay(new Date());
end.setUTCMonth(10, -1);
end = lastDay(end, 0);
date = adjustDST(date, begin, end);
var day = date.getUTCDate(),
mon = date.getUTCMonth() + 1,
year = date.getUTCFullYear(),
hour = date.getUTCHours(),
minute = ('0' + date.getUTCMinutes()).slice(-2),
second = ('0' + date.getUTCSeconds()).slice(-2),
suffix = hour < 12 ? 'AM' : 'PM';
hour = (hour - 24) % 12 + 12;
return mon + '/' + day + '/' + year + ', ' + hour + ':' + minute + ':' + second + ' ' + suffix;
}
setInterval(function () {
document.body.textContent = updateBST();
}, 1000);
我通过在调试器中暂停并更改当前日期的月份来测试 BST,输出是一个小时后的,所以它似乎工作正常。感谢大家的帮助!
在纯 JS 中是不可能的,仅使用 Date
方法,但是(当然)有一个库:http://momentjs.com/timezone/
示例:
moment.tz("Europe/London").format(); // 2016-01-15T09:21:08-07:00
支持一个时区并不困难,只要您知道它何时转换为夏令时。
A javascript 日期由 UTC 时间值和基于主机系统设置的时区偏移量组成。因此,您需要做的就是将您想要的时区偏移量应用到 UTC 时间,很快,任何时区都有您的时间。
虽然有一些事实上的标准(例如 IATA timezone codes and IANA timezones),但没有标准的时区缩写系统。我猜 BST 是指英国夏令时,也称为英国夏令时 (BDT) 和英国夏令时 (BDST)。它也可能是孟加拉国标准时间或布干维尔标准时间,也称为 "BST"。
有各种使用 IANA 代码的库(例如 Moment Timezone)可以随时(或多或少)提供任何支持的时区的时间。
BST从每年3月的最后一个星期日01:00UTC开始,到每年10月的最后一个星期日01:00UTC结束,所以算法是:
- 根据系统的本地设置创建新日期(例如
new Date()
) - 根据 UTC 值创建 BST 的开始和结束日期(今年为 2016-03-27T01:00:00Z 和 2016-03-30T02:00:00Z)
- 查看当前 UTC 时间是否在该范围内
- 如果是,则将在#1 中创建的日期的 UTC 时间增加 1 小时
- 根据日期的 UTC 值输出格式化字符串
就是这样,唯一困难的部分是找到合适的星期日约会。您根本不需要考虑本地时区偏移量,因为一切都基于 UTC,Date 对象也是如此。
目前我没有时间提供代码,所以请尝试一下,我会在大约 10 小时内回复您。
编辑
这是代码。前两个函数是帮助函数,一个获取一个月中的最后一个星期日,另一个格式化带偏移量的 ISO 8601 字符串。大部分工作都在这两个函数中。希望评论足够了,如果需要更多解释,请询问。
我没有在字符串中包含毫秒,如果你想添加它们,请在格式化字符串的偏移部分之前添加 + '.' + ('00' + d.getUTCMilliseconds()).slice(-3)
。
请注意,如果开始或停止夏令时的日期发生变化,则需要修改该函数,但这种情况并不常见。历史日期当然需要一个小型数据库来记录特定年份和时期的夏令时开始和停止时间。
/* Return a Date for the last Sunday in a month
** @param {number} year - full year number (e.g. 2015)
** @param {number} month - calendar month number (jan=1)
** @returns {Date} date for last Sunday in given month
*/
function getLastSunday(year, month) {
// Create date for last day in month
var d = new Date(year, month, 0);
// Adjust to previous Sunday
d.setDate(d.getDate() - d.getDay());
return d;
}
/* Format a date string as ISO 8601 with supplied offset
** @param {Date} date - date to format
** @param {number} offset - offset in minutes (+east, -west), will be
** converted to +/-00:00
** @returns {string} formatted date and time
**
** Note that javascript Date offsets are opposite: -east, +west but
** this function doesn't use the Date's offset.
*/
function formatDate(d, offset) {
function z(n){return ('0'+n).slice(-2)}
// Default offset to 0
offset = offset || 0;
// Generate offset string
var offSign = offset < 0? '-' : '+';
offset = Math.abs(offset);
var offString = offSign + ('0'+(offset/60|0)).slice(-2) + ':' + ('0'+(offset%60)).slice(-2);
// Generate date string
return d.getUTCFullYear() + '-' + z(d.getUTCMonth()+1) + '-' + z(d.getUTCDate()) +
'T' + z(d.getUTCHours()) + ':' + z(d.getUTCMinutes()) + ':' + z(d.getUTCSeconds()) +
offString;
}
/* Return Date object for current time in London. Assumes
** daylight saving starts at 01:00 UTC on last Sunday in March
** and ends at 01:00 UTC on the last Sunday in October.
** @param {Date} d - date to test. Default to current
** system date and time
** @param {boolean, optional} obj - if true, return a Date object. Otherwise, return
** an ISO 8601 formatted string
*/
function getLondonTime(d, obj) {
// Use provided date or default to current date and time
d = d || new Date();
// Get start and end dates for daylight saving for supplied date's year
// Set UTC date values and time to 01:00
var dstS = getLastSunday(d.getFullYear(), 3);
var dstE = getLastSunday(d.getFullYear(), 10);
dstS = new Date(Date.UTC(dstS.getFullYear(), dstS.getMonth(), dstS.getDate(),1));
dstE = new Date(Date.UTC(dstE.getFullYear(), dstE.getMonth(), dstE.getDate(),1));
// If date is between dstStart and dstEnd, add 1 hour to UTC time
// and format using +60 offset
if (d > dstS && d < dstE) {
d.setUTCHours(d.getUTCHours() +1);
return formatDate(d, 60);
}
// Otherwise, don't adjust and format with 00 offset
return obj? d : formatDate(d);
}
document.write('Current London time: ' + getLondonTime(new Date()));
伦敦时间/英国夏令时:
const now = new Date();
console.log(now.toLocaleString('en-GB', { timeZone: 'Europe/London' }));