本文最后更新于2022年06月09日,已超过3天没有更新。如果文章内容或图片资源失效,请留言反馈,我会及时处理,谢谢!
时间戳转换成 “yyyy-MM-dd hh:mm:ss”格式
代码语言:javascript复制happenTimeFun(num){//时间戳数据处理
let date = new Date(num);
//时间戳为10位需*1000,时间戳为13位的话不需乘1000
let y = date.getFullYear();
let MM = date.getMonth() 1;
MM = MM < 10 ? ('0' MM) : MM;//月补0
let d = date.getDate();
d = d < 10 ? ('0' d) : d;//天补0
let h = date.getHours();
h = h < 10 ? ('0' h) : h;//小时补0
let m = date.getMinutes();
m = m < 10 ? ('0' m) : m;//分钟补0
let s = date.getSeconds();
s = s < 10 ? ('0' s) : s;//秒补0
return y '-' MM '-' d ' ' h ':' m ':' s;
},
另外一种补0写法
代码语言:javascript复制saveTiming(){//时间戳数据处理
let m=this;
let str=''
let date = new Date(m.value1);
str=date.getFullYear() '-' (date.getMonth() 1) '-' date.getDate() ' ' m.checkTime(date.getHours()) ':' m.checkTime(date.getMinutes()) ':' m.checkTime(date.getSeconds());
return str
},
checkTime(time){//时间补零
let str=''
if(time<10){
str='0' time
}else{
str=time
}
return str
},
“yyyy-MM-dd hh:mm:ss”转换成时间戳
代码语言:javascript复制timeProcessing(){
let timeDate = "2022-06-04 12:49:33";
let Time = new Date(timeDate);
console.log(Time)
let timestemp = Time.getTime();
console.log(timestemp)//1561345728000
}