我想将utc偏移值(例如"-1000"
)转换为给定的小时数(例如2pm
)。如何使用mommentjs
执行此操作?有没有一种方法可以不使用momentjs timzone
?我以前尝试过以下方法,但没有得到预期的结果。
moment.parseZone("-1000").format('h A')
答案 0 :(得分:1)
utcOffset
接受基于分钟的偏移值即可。如果“ -1000”是指10个小时的偏移量,那么-600就是要偏移的分钟数。
moment().utcOffset(-600).format('h A')