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 に答える