美文网首页
js常用代码片段

js常用代码片段

作者: 四月天__ | 来源:发表于2018-06-14 14:39 被阅读10次

1、时间戳转时间,可以进行时间格式化

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

function formatDate(timeStrap, fmt) {
  const date = new Date(timeStrap)
  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;
};
//注意时间戳传Int类型而不是String类型
const time_str = formatDate(1619776848000,'yyyy-MM-dd hh:mm')
console.log(time_str);

相关文章

网友评论

      本文标题:js常用代码片段

      本文链接:https://www.haomeiwen.com/subject/jsryeftx.html