[FAQ] JS 时间戳格式化为 date

拷贝使用,不用引入第三方库

function formatDate (date = 0, fmt = 'yyyy-MM-dd hh:mm:ss') {
  date = new Date(+date)
  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)) {
      let str = o[k] + ''
      fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : ('00' + str).substr(str.length))
    }
  }

  return fmt
}

第三方库有 momentjs,支持的功能也越多。

Link:https://www.cnblogs.com/farwish/p/12940076.html

原文地址:https://www.cnblogs.com/farwish/p/12940076.html