如何在country_select
或localized_country_select
助手生成的下拉列表中预选国家/地区?以下代码很好地创建了一个国家/地区列表,但:selected => :ch
部分没有预先选择瑞士(ch)的预期效果:
<%= localized_country_select(:user, :country, [], :selected => :ch) %>
更新:以下似乎是实现这一目标的更好选择。
localized_country_select_tag(name, selected_value = nil, priority_countries = nil, html_options = {})