gpt4 book ai didi

javascript - 如何在 Javascript 中格式化时间戳以在图表中显示它? UTC 没问题

转载 作者:可可西里 更新时间:2023-11-01 01:19:59 28 4
gpt4 key购买 nike

基本上,我收到原始时间戳,我需要将它们格式化为 HH:MM:SS 格式。

最佳答案

这是一个提供 UTC 日期灵活格式的函数。它接受类似于 Java 的 SimpleDateFormat 的格式字符串:

function formatDate(date, fmt) {
function pad(value) {
return (value.toString().length < 2) ? '0' + value : value;
}
return fmt.replace(/%([a-zA-Z])/g, function (_, fmtCode) {
switch (fmtCode) {
case 'Y':
return date.getUTCFullYear();
case 'M':
return pad(date.getUTCMonth() + 1);
case 'd':
return pad(date.getUTCDate());
case 'H':
return pad(date.getUTCHours());
case 'm':
return pad(date.getUTCMinutes());
case 's':
return pad(date.getUTCSeconds());
default:
throw new Error('Unsupported format code: ' + fmtCode);
}
});
}

你可以这样使用它:

formatDate(new Date(timestamp), '%H:%m:%s');

关于javascript - 如何在 Javascript 中格式化时间戳以在图表中显示它? UTC 没问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2315408/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com