// 年月日,时分秒
getFullTime() {
    let date = new Date(),//时间戳为10位需*1000,时间戳为13位的话不需乘1000
        Y = date.getFullYear() + '',
        M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1),
        D = (date.getDate() < 10 ? '0'+(date.getDate()) : date.getDate()),
        h = (date.getHours() < 10 ? '0'+(date.getHours()) : date.getHours()),
        m = (date.getMinutes() < 10 ? '0'+(date.getMinutes()) : date.getMinutes()),
        s = (date.getSeconds() < 10 ? '0'+(date.getSeconds()) : date.getSeconds());
    return Y + M + D + h + m + s
},

// 获取当前时间戳
getLocalTime() {
    return new Date().getTime();
},

// 时间戳
time2TimeStap (timer) {
    return new Date(timer).getTime();
},

这里要注意:

date.getFullYear()获取到的是数字类型,需要后面跟 + '' 转成字符串

相关文章:

  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2021-12-05
  • 2022-01-03
  • 2021-05-22
猜你喜欢
  • 2021-08-15
  • 2022-12-23
  • 2021-07-23
  • 2021-11-02
  • 2022-02-08
  • 2021-07-10
  • 2022-12-23
相关资源
相似解决方案