Rails 新手问题。目前我有一个应用程序,其中包括:
<%= time_ago_in_words(post.created_at) %> ago.
这会产生类似于以下内容的输出:
“6天21小时56分钟前。”
我想简化和概括这一点,使其更像:
“6 天前”或“5 小时前”或“几秒钟前”等
- 我怎样才能做到这一点?
- 我在 Hartl rails 教程中注意到
<%= time_ago_in_words(post.created_at) %>
按预期工作(即短而甜)。为什么有区别?输出是否time_ago_in_words
取决于使用的 Rails 版本?