我有以毫秒为单位的时间戳,我想按原样转换为人类可读的格式。但是moment js按照服务器的时区转换时间戳。实际上,时间戳仅在UTC时区中。 moment js再次将其转换为UTC。如何通知moment js给定的时间戳已经在UTC中,而不根据服务器的时区再次转换。

请考虑给定的代码:
moment(parseInt('1561407163043')).format("LLLL")

最佳答案

使用moment.utc

moment.utc(parseInt('1561407163043')).format("LLLL")


有关更多详细信息,请参见https://momentjs.com/docs/#/parsing/

关于javascript - 如何防止Moment JS根据服务器时区转换时间戳,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56778546/

10-13 09:11