0

使用 Rails,我需要添加 html 标签:

<time datetime="2012-04-29T16:58Z">20 days ago</time>

从存储的日期开始。我如何从@post.created_at 获得上述信息?

提前致谢!

4

1 回答 1

2

见 strftime http://www.ruby-doc.org/core-1.9.3/Time.html#method-i-strftime

<%= @post.created_at.strftime(%Y-%m-%dT%H:%MZ) %>
<%= time_ago_in_words(@post.created_at) %>
于 2012-05-26T00:33:43.863 回答