gpt4 book ai didi

javascript - 将日期转换为更易读的格式

转载 作者:行者123 更新时间:2023-12-03 10:41:52 24 4
gpt4 key购买 nike

给定从现在到 future 7 天之间随机选择的 DateTime 值数组,如何显示相对时间值,例如:

  • 2小时内
  • 3天内
  • 1 米内

目前,my program generates a random dateArray具有以下格式的项目,我理想情况下希望将其传递到一个函数中,该函数会将它们返回为相对时间格式。

var timelineItemCount = getRandomInt(0, 19);
var dateArray = new Array();

for(i=0;i<timelineItemCount;i++)
{
var today = new Date();
var randomDates = randomDate(today, new Date(today.getFullYear(), today.getMonth(), today.getDate()+7));
dateArray.push(randomDates);
}
dateArray.sort(function compare(a, B)/> {
return (a < B)/> - (a > B)/>;
});
console.log(dateArray);

function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}

function randomDate(start, end) {
return new Date(start.getTime() + Math.random() * (end.getTime() - start.getTime()));
}

我已经做了一些研究,到目前为止已经看到了如何使用过去的值计算相对时间的示例,但我还没有看到太多关于现在和 future 7 天之间选择的值的示例。例如:

const int SECOND = 1;
const int MINUTE = 60 * SECOND;
const int HOUR = 60 * MINUTE;
const int DAY = 24 * HOUR;
const int MONTH = 30 * DAY;

var ts = new TimeSpan(DateTime.UtcNow.Ticks - yourDate.Ticks);
double delta = Math.Abs(ts.TotalSeconds);

if (delta < 0)
{
return "not yet";
}
if (delta < 1 * MINUTE)
{
return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
}
if (delta < 2 * MINUTE)
{
return "a minute ago";
}
if (delta < 45 * MINUTE)
{
return ts.Minutes + " minutes ago";
}
if (delta < 90 * MINUTE)
{
return "an hour ago";
}
if (delta < 24 * HOUR)
{
return ts.Hours + " hours ago";
}
if (delta < 48 * HOUR)
{
return "yesterday";
}
if (delta < 30 * DAY)
{
return ts.Days + " days ago";
}
if (delta < 12 * MONTH)
{
int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
return months <= 1 ? "one month ago" : months + " months ago";
}
else
{
int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
return years <= 1 ? "one year ago" : years + " years ago";
}

最佳答案

您可以编写自己的库来执行此操作,也可以使用现有的库:

关于javascript - 将日期转换为更易读的格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28737458/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com