我在Firebase服务器中存储Unix时间戳,它保存为1417780144675
。
当我转换epochconverter时,输出为:
Assuming that this timestamp is in milliseconds:
GMT: Fri, 05 Dec 2014 11:49:04 GMT
Your time zone: 12/5/2014, 5:19:04 PM GMT+5:30
但是当我在JavaScript中转换时,输出是:
Fri Aug 30 46897 15:27:55 GMT+0530 (IST)
因此,epochconverter的输出是正确的,而在JavaScript中则是错误的。
请使用JavaScript获取正确的输出。
答案 0 :(得分:3)
您应该实例化新日期:
var date = new Date(1417780144675);
<强>输出强>:
Fri Dec 05 2014 12:49:04 GMT+0100