js semanticTime()函数生活化格式化展示时间,类朋友圈,社交应用动态时间,刚刚,昨天,几天前

该博客介绍了一个JavaScript函数`semanticTime`,用于根据当前时间动态地将日期字符串转换成易于理解的生活化时间表述,如'刚刚'、'几分钟前'、'昨天'等。函数接受两个参数:日期字符串和一个精度标志。如果精度标志为`true`,会显示详细的时间,如'2022年12月2日12:42'。博客通过示例展示了如何使用此函数。
摘要由CSDN通过智能技术生成

调用 semanticTime函数,动态分段生活化展示时间,包含

  • 刚刚
  • 几分钟前
  • 几小时前
  • 昨天
  • 几天前
  • isPrecise参数为true将展示详细时间 某年某月某日 时:分
// 语义化时间展示
function semanticTime(dateString, isPrecise){
  if (!dateString) return ''
  const date = new Date(Date.parse(dateString.replace(/-/g, "/")))
  const diffTime = new Date()-date
  
  const year = date.getFullYear()
  const month = date.getMonth() + 1
  const day = date.getDate()
  const hours = date.getHours()
  const minutes = date.getMinutes()
  const yearMonthDay = year+'年'+month+'月'+day+'日'
  const hoursMinutes = hours+':'+minutes
  const allStr = yearMonthDay+' '+hoursMinutes
  
  if (diffTime<1*60*1000){
    return '刚刚'
  } else if(diffTime<60*60*1000){
    return Math.floor((diffTime / (1000 * 60))) + '分钟前'
  } else if(diffTime<24*60*60*1000){
    if (!isPrecise) {
    	return Math.floor((diffTime / (60 * 1000 * 60))) + '小时前'
    } else {
      return hoursMinutes
    }
  } else if(diffTime<2*24*60*60*1000){
    return '昨天'+(isPrecise?' '+hoursMinutes:'')
  } else {
    if (!isPrecise) {
    	return Math.floor((diffTime / (24 * 60 * 1000 * 60))) + '天前'
    } else {
      return allStr
    }
  }
}
//const str = semanticTime('2022-12-2 12:42', ) // 21天前
const str = semanticTime('2022-12-2 12:42', 1) // 2022年12月2日 12:42
console.log('str is:', str)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值