js将时间戳转换为年月日时分秒
作者:互联网
/** * @author @author * @description 将时间戳转换为年-月-日-时-分-秒格式 * @param {String} timestamp v-modeld值 * @returns {String} 年-月-日-时-分-秒 */ function timestampToTime(timestamp) { var date = new Date();//时间戳为10位需*1000,时间戳为13位的话不需乘1000 var Y = date.getFullYear() + '-'; var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; var D = (date.getDate() < 10 ? '0'+date.getDate() : date.getDate()) + ' '; var h = (date.getHours() < 10 ? '0'+date.getHours() : date.getHours()) + ':'; var m = (date.getMinutes() < 10 ? '0'+date.getMinutes() : date.getMinutes()) + ':'; var s = (date.getSeconds() < 10 ? '0'+date.getSeconds() : date.getSeconds()); let strDate = Y+M+D+h+m+s;var timestamp = new Date().getTime(); //当前时间戳 timestampToTime(timestamp)
console.log(strDate) //2020-05-08 17:44:56 return strDate; }
标签:10,getMinutes,getSeconds,timestamp,js,var,date,年月日,时分秒 来源: https://www.cnblogs.com/tlfe/p/12852056.html