时间戳的格式化

Posted cuter、

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳的格式化相关的知识,希望对你有一定的参考价值。

//格式化创建时间
Vue.filter('dataFormatCommonTime', function(originVal) {
  const dt = new Date(originVal)
  const y = dt.getFullYear()
  const m = (dt.getMonth() + 1 + '').padStart(2, '0')
  const d = (dt.getDate() + '').padStart(2, '0')
  const hh = (dt.getHours() + '').padStart(2, '0')
  const mm = (dt.getMinutes() + '').padStart(2, '0')
  const ss = (dt.getSeconds() + '').padStart(2, '0')
  return `${y}-${m}-${d}   ${hh}:${mm}:${ss}`
})
//格式化在线时间
Vue.filter('dataFormat', function(originVal) {
  const h = parseInt((originVal / 1000 / 60 / 60) % 24)
  const m = parseInt((originVal / 1000 / 60) % 60)
  const s = parseInt((originVal / 1000) % 60)
  return `  ${h}时:${m}分:${s}`
})

以上是关于时间戳的格式化的主要内容,如果未能解决你的问题,请参考以下文章

时间戳的休眠搜索查询返回空列表

时间戳的格式化

时间戳的格式化

时间戳的格式化

php获取今天某个时间的时间戳的方法

如何在 twig 中显示来自 Unix 时间戳的格式化日期?