gpt4 book ai didi

javascript - 在 Javascript 中修改 ISO 日期

转载 作者:数据小太阳 更新时间:2023-10-29 04:56:26 26 4
gpt4 key购买 nike

我正在使用以下命令在 Javascript 程序中创建多个 ISO 日期:

var isodate = new Date().toISOString()

返回格式为 "2014-05-15T16:55:56.730Z" 的日期。我需要从每个日期中减去 5 小时。上述日期将被格式化为 "2014-05-15T11:55:56.730Z"

我知道这是 hacky,但非常感谢快速修复。

最佳答案

一种解决方案是在将日期转换为字符串之前修改日期。

var date = new Date();
date.setHours(date.getHours() - 5);

// now you can get the string
var isodate = date.toISOString();

为了更完整和更强大的日期管理,我建议查看 momentjs .

关于javascript - 在 Javascript 中修改 ISO 日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23684603/

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