首页 > 其他 > 详细

将 时间戳 转换为 具体时间

时间:2020-01-07 19:44:26      阅读:85      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

 

// 将时间戳转换具体时间
    toDates (times) {
      const date = new Date(times)
      const Y = date.getFullYear()
      const M = (date.getMonth() + 1 < 10 ? 0 + (date.getMonth() + 1) : date.getMonth() + 1)
      const D = (date.getDate() < 10 ? 0 + date.getDate() : date.getDate())
      const H = date.getHours() < 10 ? 0 + date.getHours() : date.getHours()
      const Min = date.getMinutes() < 10 ? 0 + date.getMinutes() : date.getMinutes()
      const S = date.getSeconds() < 10 ? 0 + date.getSeconds() : date.getSeconds()
      const dateTime = Y +  + M +  + D +  + H +  + Min +  + S + 
      return dateTime
    }

 

如果将 具体时间 再转换为 时间戳:

 

var date = new Date(2014-04-23 18:55:49:123);
// 有三种方式获取 var time1 = date.getTime(); var time2 = date.valueOf(); var time3 = Date.parse(date); console.log(time1);//1398250549123 console.log(time2);//1398250549123 console.log(time3);//1398250549000

将 时间戳 转换为 具体时间

原文:https://www.cnblogs.com/listen9436/p/12162905.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!