4

我对 Rails 中的 I18N 不太熟悉,所以请耐心等待。尝试设置自定义日期和时间格式:

#config/locales/en.yml
en:
  date:
    formats:
      long_dateweek: "%A, %B %d, %Y"
  time:
    formats:
      very_short: "%H:%M"

但是当我尝试使用它们时,我只会得到默认格式:

1.9.3p194 :001 > Time.now.to_date.to_s(:long_dateweek)
 => "2012-08-22" 
1.9.3p194 :002 > Time.now.to_time.to_s(:very_short)
 => "2012-08-22 16:12:47 -0700" 

尝试重新启动控制台(甚至服务器)无济于事......我错过了什么?

4

2 回答 2

3

@alexsanford1 有正确的答案。我在下面修改了我的以在视图中工作。

<%= l Time.now, :format => :very_short %>
于 2012-08-23T01:27:40.520 回答
3

您需要使用I18n.l如下方法:

1.9.3p194 :001 > I18n.l Time.now.to_date, :format => :long_dateweek
 => "Wednesday, August 22, 2012" 
1.9.3p194 :002 > I18n.l Time.now, :format => :very_short
 => "23:03"

您还可以l在视图中使用辅助方法。查看此导轨指南以获取更多信息。

于 2012-08-23T02:04:59.547 回答