用C#计算相对时间

给定一个特定的DateTime值,我如何显示相对时间,如:

  • 2小时前
  • 3天前
  • 一个月前

  • 杰夫,你的代码很好,但可以使用常量更清晰(如代码完成所示)。

    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 < 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";
    }
    

    jquery.timeago插件

    Jeff,因为Stack Overflow广泛使用jQuery,所以我推荐使用jquery.timeago插件。

    优点:

  • 避免时间戳记为“1分钟前”,即使页面在10分钟前打开; timeago自动刷新。
  • 您可以在Web应用程序中充分利用页面和/或片段缓存,因为时间戳不在服务器上计算。
  • 你可以使用像酷儿一样的微格式。
  • 只需将它附加到DOM准备好的时间戳上即可:

    jQuery(document).ready(function() {
        jQuery('abbr.timeago').timeago();
    });
    

    这将在标题中使用一个timeago和一个ISO 8601时间戳来转换所有的abbr元素:

    <abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>
    

    变成这样的东西:

    <abbr class="timeago" title="July 17, 2008">4 months ago</abbr>
    

    这产生了:4个月前。 随着时间的推移,时间戳会自动更新。

    免责声明:我写了这个插件,所以我很偏向。


    这是我如何做到的

    var ts = new TimeSpan(DateTime.UtcNow.Ticks - dt.Ticks);
    double delta = Math.Abs(ts.TotalSeconds);
    
    if (delta < 60)
    {
      return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
    }
    if (delta < 120)
    {
      return "a minute ago";
    }
    if (delta < 2700) // 45 * 60
    {
      return ts.Minutes + " minutes ago";
    }
    if (delta < 5400) // 90 * 60
    {
      return "an hour ago";
    }
    if (delta < 86400) // 24 * 60 * 60
    {
      return ts.Hours + " hours ago";
    }
    if (delta < 172800) // 48 * 60 * 60
    {
      return "yesterday";
    }
    if (delta < 2592000) // 30 * 24 * 60 * 60
    {
      return ts.Days + " days ago";
    }
    if (delta < 31104000) // 12 * 30 * 24 * 60 * 60
    {
      int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
      return months <= 1 ? "one month ago" : months + " months ago";
    }
    int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
    return years <= 1 ? "one year ago" : years + " years ago";
    

    建议? 注释? 如何改进这种算法?

    链接地址: http://www.djcxy.com/p/4995.html

    上一篇: Calculate relative time in C#

    下一篇: Difference between UTC and GMT Standard Time in .NET