前端JS 方法 将时间戳转换格式 2021-6-1

<script>
    let date = new Date();
    let dateYear = date.getFullYear();             //获取年 
    let dateMonth = date.getMonth();               //获取月  
    let dateDate = date.getDate();                 //获取当日
    let dateDay = date.getDay();                   //获取当日星期数
    let dateHours = date.getHours();               //获取小时
    let dateMinutes = date.getMinutes();           //获取分钟
    let dateSeconds = date.getSeconds();           //获取秒
    let dateMilliseconds = date.getMilliseconds(); //获取毫秒
</script>

服务端给前端返回时间戳 :

  2021-6-1    时间戳转化为 这种格式
// 通过时间戳获取正常的时间显示 参数1: 时间数据 , 参数2 :类型 比如 Y 自我选择可删除 少传参
function getTime(data,type){
     
  var _data = data;

  if (String(data).length == 13) {
     
    _data = data
  } else {
     
    _data = data*1000
  }
  const time = new Date(_data);    
  const Y = time.getFullYear();
  const Mon = time.getMonth() + 1;
  const Day = time.getDate();
  const H = time.getHours();
  const Min = time.getMinutes();
  const S = time.getSeconds();
  // 
  if(type=="Y"){
     
    return `${
       Y}-${
       Mon}-${
       Day}`
  }else if(type=="H"){
     
    return `${
       H}:${
       Min}:${
       S}`
  }else{
     
    return `${
       Y}-${
       Mon}-${
       Day} ${
       H}:${
       Min}:${
       S}`
  }
}

你可能感兴趣的:(前端JS 方法 将时间戳转换格式 2021-6-1)