时间格式的转换---全

1.日期转时间戳

this.timeChou('2022-10-20')
// 输入日期返回时间戳   1666224000000
timeChou(time) {
      const timeData = new Date(time).getTime()
      return timeData
}

 2.时间戳转日期


format(timeChuo) {    // 例如 输入1666224000000  返回  2022-10-20 08:00:00
const time = new Date(timeChuo)
const y = time.getFullYear()
const m = time.getMonth() + 1
const d = time.getDate()
const h = time.getHours()
const i = time.getMinutes()
const s = time.getSeconds()
return y + '-' + this.add0(m) + '-' + this.add0(d) + ' ' + this.add0(h) + ':' + this.add0(i) + ':' + this.add0(s)
},
add0(m) {
// 例如8 则返回08
return m < 10 ? '0' + m : m
},

 3.标准格式时间转日期   年-月-日

var date = new Date();   //Thu Aug 18 2022 08:15:54 GMT+0800 (中国标准时间)
this.timeData(date)

timeData(date) {
  //2022-08-18
  return new Date(date).toISOString().slice(0, 10);
}

4.标准格式转---年-月-日 时:分:秒

var date = new Date();
// 核心代码,可自行封装
function converTimeOfHMS(date) {
  var json_date = new Date(date).toJSON();
  return new Date(new Date(json_date) + 8 * 3600 * 1000)
    .toISOString()
    .replace(/T/g, " ")
    .replace(/\.[\d]{3}Z/, "");
}
————————————————
版权声明:本文为CSDN博主「谨言不言」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/m0_46442996/article/details/109648864

 

 

 

 

 

 

 

凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数

posted @ 2022-08-18 08:23  Z-HarOld  阅读(1440)  评论(0编辑  收藏  举报