提供model.created_at
我已经能够使用:
<%="#{time_ago_in_words(model.created_at)} ago "%>
输出类似
的帮助器是什么奖励积分,如果它输出如上,但是对于今天创建的任何记录(不是24小时前,但今天)。它显示了时间,例如:
由于
答案 0 :(得分:1)
辅助方法怎么样:
def formated_date(date)
if date > Time.now.beginning_of_day
return date.strftime("%l:%M%p")
end
date.strftime("%b %d")
end