时间戳、日期格式转化

时间戳转日期:

let time = 1576725414;   // 先定义一个时间戳

12小时制:

new Date(parseInt(time) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ')

24小时制:

new Date(parseInt(time) * 1000).toLocaleString('chinese',{hour12:false})

你可能感兴趣的:(时间戳、日期格式转化)