📜  time ago 函数 web - Javascript (1)

📅  最后修改于: 2023-12-03 14:47:58.922000             🧑  作者: Mango

Javascript中的Time Ago函数

在现在这个数字化时代,展示时间是我们经常需要处理的一个问题。而且很多时候,我们并不需要精确到秒的时间表现方式,而只需要显示一个相对时间。比如“三分钟前”,“两天前”等等。

在Javascript中,有一个非常方便的函数可以实现这个功能,它就是time ago函数。

time ago函数是什么?

time ago函数是一个通过传入一个时间戳和当前时间来计算出相对时间的函数。它可以将两个时间之间的时间差转换为相对的时间,例如几秒前,几分钟前,几小时前,几天前,几月前等。

如何使用time ago函数?
步骤1

第一步,我们需要下载一个已经编写好的time ago 函数库,有几个库可以实现这个功能,

比如moment.jstimeago.jsprettytime.js等等。

这些库中都提供了一个或多个方法来计算相对时间,我们可以根据自己的需求选择相应的库。

步骤2

第二步,我们需要在我们的页面中导入所需的库,然后实例化一个日期时间。

const now = new Date();
步骤3

第三步,当我们需要将时间戳格式的时间转换为相对时间时,需要传入两个参数timenow,其中time为目标时间戳,now为当前时间戳。

const timeago = (timeStamp) => {
  const convertedTime = new Date(timeStamp);

  const timeAgoInMilliSeconds = Math.abs(now - convertedTime);
  const timeAgoInSeconds = timeAgoInMilliSeconds / 1000;

  if (timeAgoInSeconds < 60) {
    return `${Math.floor(timeAgoInSeconds)} seconds ago`;
  } else if (timeAgoInSeconds < 3600) {
    return `${Math.floor(timeAgoInSeconds / 60)} minutes ago`;
  } else if (timeAgoInSeconds < 86400) {
    return `${Math.floor(timeAgoInSeconds / 3600)} hours ago`;
  } else if (timeAgoInSeconds < 2592000) {
    return `${Math.floor(timeAgoInSeconds / 86400)} days ago`;
  } else if (timeAgoInSeconds < 31104000) {
    return `${Math.floor(timeAgoInSeconds / 2592000)} months ago`;
  } else {
    return `${Math.floor(timeAgoInSeconds / 31104000)} years ago`;
  }
}

这是一个非常简单的实现代码,将时间戳转换为相对时间。根据timeAgoInSeconds的值,我们可以确定时间差是否小于一分钟、一小时、一天、一月或一年,然后返回相应结果。

步骤4

第四步,我们可以将函数应用在需要的地方,比如你需要在html页面中动态地更新文章的发表时间,你可以这样实现:

<p>This article was published ${timeago(article.timestamp)}.</p>
总结

经过学习,我们可以利用第三方库或自己实现time ago函数来将时间戳转换为相对时间。相对时间不仅能为用户提供简洁的信息,而且还可以为网站提高性能和减少资源消耗。