前一段时间在created_at?

时间:2014-06-30 12:04:12

标签: ruby-on-rails date

我正在尝试使用

<%= comment.created_at.time_ago_in_words(from_time) %>

但它无法正常工作。我希望评论显示日期为:3分钟前或2天前。

使用此助手的正确方法是什么?

在我的布局助手中:

def time_ago_in_words(from_time, include_seconds_or_options = {})
    distance_of_time_in_words(from_time, Time.now, include_seconds_or_options)
end

谢谢!

1 个答案:

答案 0 :(得分:8)

http://api.rubyonrails.org/classes/ActionView/Helpers/DateHelper.html#method-i-time_ago_in_words

所以它应该是

<%= time_ago_in_words(comment.created_at) %>