我的哈希输出给了我以下日期时间:
16 May 11 13:12:14 +0000
我如何将其格式化为合理的东西?
由于
答案 0 :(得分:1)
我假设你想在视图中输出这个...首先,你可以创建一些格式:
# /config/locales/en.yml:
en:
date:
formats:
full: "%b %d, %Y"
time:
formats:
full: "%B %d, %Y at %I:%M%p"
然后,您可以使用指定格式的l
方法在视图中显示日期时间:
<%= l @something.updated_at, :format => :full %>
这将显示如下内容:
May 16, 2011 at 01:12pm