0

目前,我在 Rails 中发布内容后,时间格式为

<time><%= post.created_at.to_formatted_s(:day_month_year) %></time>

我怎样才能让它说“大约 6 分钟前”

4

1 回答 1

6
<time><%= time_ago_in_words(post.created_at) %> ago</time>
于 2012-05-25T21:29:14.147 回答