为什么我不能在Rails 3中使用符号查看Lazy Lookup?

时间:2012-10-31 08:19:30

标签: ruby-on-rails ruby-on-rails-3 view localization

我在视图中有以下表格:

# views/students/index.html.haml
%table.table
  %thead
    %tr
      %th=t :first_name  # doesn`t work
      %th=t '.last_name' # works
  %tbody
    - @students.each do |s|
      %tr
        %td=s.first_name
        %td=s.last_name

这是我的语言环境文件:

pl:
  students:
    index:
      first_name: "Imię"
      last_name: "Nazwisko"

可以使用符号代替字符串'.first_name'??

1 个答案:

答案 0 :(得分:2)

它将与:'.first_name'一起使用(我假设你所指的“符号”是句号)