我正在尝试使用
<%= 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
谢谢!
答案 0 :(得分:8)
http://api.rubyonrails.org/classes/ActionView/Helpers/DateHelper.html#method-i-time_ago_in_words
所以它应该是
<%= time_ago_in_words(comment.created_at) %>