使用时刻时日期转换不正确

时间:2016-10-17 11:06:23

标签: momentjs

不确定我的代码是否存在问题,但使用时刻似乎日期不正确。这是我的代码:

var tempunix = arr[j][i];
dateOfBirth = moment(tempunix).format("DD-MMM-YYYY");

以下是浏览器的结果:

dateOfBirth "30-Dec-1969"
tempunix -133344000
arr[j][i]-133344000

当我使用在线转换器时,-133344000显示10Oct65。还有其他人遇到过这个问题吗?

1 个答案:

答案 0 :(得分:0)

以毫秒为单位传递时间。

moment(-133344000000)

或者,如果你想在几秒钟内使用时间,可以使用moment.unix()变体。

moment.unix(-133344000)