1

嗨,我已经检查过了,在所有我的 HTML 或 CSS 文档中都没有 CSS text-transform: uppercase .. 但就在我使用这个“每个循环”时,我会以国家的名义得到大写字母。国家的..

我查看了很多问题,但我无法在任何人身上找到类似的问题,我得到了大写字母。

编辑:我只是清除缓存并重新加载,实际上没有大写,有一个错误

nil:NilClass 的未定义方法“名称”

 <% @player.citizens.each do |citizen| %>

          <%= t('generales.citizen') %> :
          <%= citizen.country.name %>

    <% end %>

好的,这里有一些模型,

国家.rb

class Country < ActiveRecord::Base
  attr_accessible :iso, :name, :printable_name, :iso3, :numcode
end

公民.rb

class Citizen < ActiveRecord::Base
  attr_accessible :name, :country_id

  belongs_to :player
  belongs_to :country

end

俱乐部.rb

class Club < ActiveRecord::Base
  attr_accessible :name, :division, :from, :to, :country_id

  belongs_to :player
  belongs_to :country

  DIVISION = %w{
    first_division
    second_division
    third_division
    amateur_division
  }

  YEARS = (1950..(Time.now.strftime('%Y')).to_i).to_a

end

好的,这段代码也可以正常工作(俱乐部)

 <% @player.clubs.each do |club| %>
  <% if club.name.present? %>
    <p>
      <%= t 'activerecord.attributes.club.name' %> :
      <%= club.name %><br />
      <%= t 'activerecord.attributes.club.country' %> :
      <%= club.country.name %><br />
      <%= t 'activerecord.attributes.club.division' %> :
      <%= t "generales.#{club.division}" if club.division.present? %><br />
      <%= t 'activerecord.attributes.club.from' %>
      <%= club.from %>
      <%= t 'activerecord.attributes.club.to' %>
      <%= club.to %>
    </p>
  <% end %>
<% end %>
4

1 回答 1

1

你可以做

<% @player.citizens.each do |citizen| %>

      <%= t('generales.citizen') %> :
      <%= citizen.country.name.titleize  # This Will Make The First Letter Of Each Word A Cap %>
      <%= citizen.country.name.downcase # this will make every letter lowercase %>
<% end %>
于 2013-09-23T02:38:36.097 回答