时间戳转换时间格式

10位时间戳转换年月日时分秒

时间戳转换年月日时分秒:2021-9-8 16:20:40
  dateTrans(date) {
      let date="1631089240"
      return (new Date(parseInt(date) * 1000).toLocaleString(‘chinese‘,{hour12:false})).replaceAll("/","-")
  },
  
判断时间戳有没有超过5分钟,true不超过,false超过
 isTimeIn(date){
     return new Date().getTime() < parseInt(date)*1000+5*60*1000
 }

时间戳转换时间格式

上一篇:squid 代理服务器应用


下一篇:HaProxy+Keepalived+Mycat高可用群集配置