using capitalize on a collection_select

浪子不回头ぞ 提交于 2019-12-23 07:58:25

问题


If this has been answered before I cannot find it.

I have the following:

= f.collection_select :sex_id, @sexes, :id, :name

and this in the controller:

@sexes = Sex.all

the sexes are all stored in lowercase, like this:

id|name
 1|steer
 2|heifer
 3|holstein

I need them to output with Capital First letters:

Steer
Heifer
Holstein

I tried:

= f.collection_select :sex_id, @sexes, :id, :name.capitalize
= f.collection_select :sex_id, @sexes, 'id', 'name'.capitalize

but they do not work, and I didn't really expect them to, but had to try them before posting this.


回答1:


collection_select calls a method on each object to get the text for the option value. You can add a new method in the model to get the right value:

def name_for_select
  name.capitalize
end

then in the view:

= f.collection_select :sex_id, @sexes, :id, :name_for_select



回答2:


The reason your initial attempt is not working is that you're attempting to capitalize a symbol or a string that represents the field name and not the actual variable.

You could do something like this and then the data would be capitalized before it's sent to the view.

@sexes = Sex.all    
@sexes = @sexes.each{|sex| sex.name.capitalize}

or

@sexes = Sex.all.each{|sex| sex.name.capitalize}



回答3:


The simpler way to do this in RoR4 would be to use the humanize method. So, your view code would look like this:

= f.collection_select :sex_id, @sexes, :id, :humanize

No need for any extra methods!



来源:https://stackoverflow.com/questions/4228382/using-capitalize-on-a-collection-select

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!