如何在正确的日期对象中转换时间戳?

时间:2016-05-13 08:57:22

标签: javascript timestamp

如何在正确的日期对象中转换时间戳?

4意见选择:

  1. 新日期(时间戳)

  2. 新日期(时间戳* 1000)

  3. parseDate(时间戳)

  4. Date.parse(时间戳)

1 个答案:

答案 0 :(得分:0)

接受的解决方案是谈论 UNIX 时间戳到JavaScript对象

var date = new Date(parseInt(jsonDate.substr(6)));