1
我想根據用戶選擇的國家實施州的自動選擇。
我的意思是,它顯示了加利福尼亞,紐約,和等在縣內選擇,如果用戶選擇美國如何只顯示屬於選定國家的縣?
國家模型
- ID
- 名
縣型號有
- ID
- COUNTRY_ID
- 地
現在我展示這樣
<% resource.build_user_profile if resource.user_profile.nil? %>
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put, :class => 'form-horizontal' }) do |f| %>
<%= devise_error_messages! %>
<%= f.fields_for :user_profile do |profile_form| %>
<label class="control-label"><%= profile_form.label :country_id %></label>
<%= profile_form.collection_select("country_id", Country.find(:all), :id, :name_en) %>
<label class="control-label"><%= profile_form.label :prefecture_id %></label>
<%= profile_form.collection_select("prefecture_id", Prefecture.find(:all), :id, :name) %>
<% end %>
感謝您的幫助:)我想你的代碼,但是這給回錯誤:(我注意到,我幾乎忘了把'我的國家'選擇字段中的'_en'。你能告訴我什麼時候它是'name_en'而不是'name'在國家領域? – MKK
請用表格開頭('form_for'行)更新您的問題比我更新我的答案 –
非常感謝。但我注意到你在這裏做的方式顯示了國家和地區在相同的選擇領域的組合。你可以讓國家和縣分開嗎? – MKK