前一段时间在created_at?

Gib*_*son 3 ruby-on-rails date

我正在尝试使用

<%= comment.created_at.time_ago_in_words(from_time) %>
Run Code Online (Sandbox Code Playgroud)

但它不会工作.我希望评论显示日期为: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
Run Code Online (Sandbox Code Playgroud)

谢谢!