码迷,mamicode.com
首页 > Web开发 > 详细

js时间戳转换为‘yyyy-MM-dd hh:mm’格式(es6语法)

时间:2017-12-27 20:26:39      阅读:1402      评论:0      收藏:0      [点我收藏+]

标签:return   let   post   时间   form   function   reg   date()   nbsp   

function formatDate(date,fmt) {
  if(/(y+)/.test(fmt)){
    fmt = fmt.replace(RegExp.$1,(date.getFullYear()+‘‘).substr(4-RegExp.$1.length));
  }
  let o = {
    ‘M+‘:date.getMonth() + 1,
    ‘d+‘:date.getDate(),
    ‘h+‘:date.getHours(),
    ‘m+‘:date.getMinutes(),
    ‘s+‘:date.getSeconds()
  };

  // 遍历这个对象
  for(let k in o){
    if(new RegExp(`(${k})`).test(fmt)){
      // console.log(`${k}`)
      console.log(RegExp.$1)
      let str = o[k] + ‘‘;
      fmt = fmt.replace(RegExp.$1,(RegExp.$1.length===1)?str:padLeftZero(str));
    }
  }
  return fmt;
};

function padLeftZero(str) {
  return (‘00‘+str).substr(str.length);
}

let TimeNow = 1514374627*1000
let newTime = new Date(TimeNow)

formatDate(newTime,‘yyyy-MM-dd hh:mm‘)   //2017-12-27 19:37

js时间戳转换为‘yyyy-MM-dd hh:mm’格式(es6语法)

标签:return   let   post   时间   form   function   reg   date()   nbsp   

原文地址:https://www.cnblogs.com/Byme/p/8127415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!