美文网首页
js格式化日期时间为YYYY-MM-DD HH:MM:SS

js格式化日期时间为YYYY-MM-DD HH:MM:SS

作者: 羊驼626 | 来源:发表于2021-09-01 09:34 被阅读0次
const format = time => {
  const date = new Date(time)

  const year = date.getFullYear()
  const month = date.getMonth() + 1 // 月份是从0开始的
  const day = date.getDate()
  const hour = date.getHours()
  const min = date.getMinutes()
  const sec = date.getSeconds()
  const newTime =
    year +
    '-' +
    (month < 10 ? '0' + month : month) +
    '-' +
    (day < 10 ? '0' + day : day) +
    ' ' +
    (hour < 10 ? '0' + hour : hour) +
    ':' +
    (min < 10 ? '0' + min : min) +
    ':' +
    (sec < 10 ? '0' + sec : sec)

  return newTime
}
export {
  format
}

相关文章

网友评论

      本文标题:js格式化日期时间为YYYY-MM-DD HH:MM:SS

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