当前位置: 首页 > Web前端 > vue.js

js实现将时间戳转换成自定义格式的年月日时分秒(yyyy-MM-ddHH-mm-ss)

时间:2023-03-31 23:28:04 vue.js

getYMDHMS(timestamp){lettime=newDate(timestamp)letyear=time.getFullYear()letmonth=time.getMonth()+1letdate=time.getDate()lethours=time.getHours()letminute=复制代码time.getMinutes()letsecond=time.getSeconds()if(month<10){month='0'+month}if(date<10){date='0'+date}if(hours<10){hours='0'+hours}if(minute<10){minute='0'+minute}if(second<10){second='0'+second}return年+'-'+月+'-'+date+''+hours+':'+minute+':'+second}//使用es6的padStart()方法来补充0getYMDHMS(timestamp){lettime=newDate(timestamp)letyear=time.getFullYear()constmonth=(time.getMonth()+1).toString().padStart(2,'0')constdate=(time.getDate()).toString().padStart(2,'0')consthours=(time.getHours()).toString().padStart(2,'0')constminute=(time.getMinutes()).toString().padStart(2,'0')constsecond=(time.getSeconds()).toString().padStart(2,'0')返回年+'-'+月+'-'+日期+''+小时+':'+分钟+':'+秒}