How to make the f.select rails selected

后端 未结 4 1966
春和景丽
春和景丽 2021-02-07 02:32

It\'s my code:

<%= f.select :area, options_for_select([[\'a\',\'a\'],[\'b\',\'b\'],[\'c\',\'c\']]), {}, {:class => \'span3 controls controls-row\'}, :selec         


        
4条回答
  •  佛祖请我去吃肉
    2021-02-07 03:22

    You should pass :selected option to options_for_select method, like this:

    <%= f.select :area, options_for_select([['a','a'],['b','b'],['c','c']], :selected => params[:area]), {}, { :class => 'span3 controls controls-row' } %>
    

提交回复
热议问题