gpt4 book ai didi

momentjs - 如何在moment.js中从UTC转换为本地时间?

转载 作者:行者123 更新时间:2023-12-04 02:45:12 27 4
gpt4 key购买 nike

我有一个简单的用例,但我无法在moment.js中弄清楚如何从GMT / UTC转换为本地时间。

例:

var gmtDateTime = moment.utc("2015-10-24 20:00", "YYYY-MM-DD HH").format('YYYY-MMM-DD h:mm A');


console.log(gmtDateTime)发出 2015-Oct-24 8:00 PM,这是正确的。现在,我只想将其转换为我的本地时间,恰好是“山区夏令时”。因此正确的转换日期为 2015-Oct-24 2:00 PM,因为我比GMT / UTC早6个小时。

仅凭moment.js怎么能做到? (谢谢!)

最佳答案

尝试moment().local()

例:

var gmtDateTime = moment.utc("2015-10-24 20:00", "YYYY-MM-DD HH")
var local = gmtDateTime.local().format('YYYY-MMM-DD h:mm A');

关于momentjs - 如何在moment.js中从UTC转换为本地时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33321495/

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