标签: ruby-on-rails ruby forms country-codes
我正在尝试使用country-select with formastic:
:country_of_residence, :as => :country
问题是我想把新西兰放在首位而不是其他国家。 我怎么能在形式上做到这一点?
答案 0 :(得分:1)
试试这个
<%= f.input :nationality, :as => :country, :priority_countries => ["New Zealand"] %>