由于忘记怎么获取时间,经常百度所以整理下!
获取时间当前日期时间:date = new Date()
13位数转日期时间: date = new Date(parseInt(参数)*1000)
10位数转日期时间: let date = new Date(parseInt(参数)*1000)
gettime(参数){
let date = new Date() // 获取当前时间
// let date = new Date(parseInt(参数)) // 13位
// let date = new Date(parseInt(参数)*1000) // 10位
var YY = date.getFullYear() + '-';
var MM = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
var DD = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate());
var hh = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
var mm = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()) + ':';
var ss = (date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds());
let time = YY + MM + DD +" "+hh + mm + ss;
console.log(time)
},
非本人原创-如有侵权联系作者!