如何制作collection_select

时间:2012-07-14 21:45:01

标签: ruby-on-rails ruby-on-rails-3 nested-forms

有一个基于Devise系统的用户 User_has_one:user_profile和user_profile_belongs_to:用户
User_profile_has_one:language,language_belongs_to:User_profile

在'user_profiles'表中,有一个名为“language_id”的列,用于了解用户说的语言。
在'languages'表中,有一个名为“name”的列。这可能像英语,西班牙语和语言类型。

现在我想将语言选择添加到我的设计编辑页面

下面应该是这样的。对?

<h2>Edit <%= resource_name.to_s.humanize %></h2>

<% resource.build_user_profile if resource.user_profile.nil? %>
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
  <%= devise_error_messages! %>

    <%= f.fields_for :user_profile do |profile_form| %>

      <div><%= profile_form.label :nickname %><br /> 
      <%= profile_form.text_field :nickname %></div> 

      <div><%= profile_form.label :language_id %><br /> 
      <%= profile_form.collection_select(language_id, @languages, language_id, name_ja ) %></div> 

    <% end %> 



  <div><%= f.label :email %><br />
  <%= f.email_field :email %></div>

  <div><%= f.label :password %> <i>(leave blank if you don't want to change it)</i><br />
  <%= f.password_field :password %></div>

  <div><%= f.label :password_confirmation %><br />
  <%= f.password_field :password_confirmation %></div>

  <div><%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br />
  <%= f.password_field :current_password %></div>
  <br />
  <div><%= f.submit "Update" %></div>
<% end %>

<h3>Cancel my account</h3>

<p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete %>.</p>

<%= link_to "Back", :back %>

已更新!

registrations_controller.rb中的编辑方法

  def edit
    @languages = Language.all
    @countries = Country.all 
    @prefectures = Prefecture.all
    @genders = Gender.all 
  end

2 个答案:

答案 0 :(得分:1)

假设您在控制器中分配@languages,那么您可能需要以下内容:

<%= profile_form.collection_select(:language_id, @languages, :id, :name) %>

您希望传递代表应该调用的方法的符号,因此&#34;:language_id&#34;而不是&#34; language_id&#34;

答案 1 :(得分:0)

在控制器操作中你应该 -

@languages = Language.find_by_sql("select distinct id, name from languages")

并在视图中

<%= collection_select :language, :id, @languages, :id, :name %>

在jquery中,您可以使用 -

访问此变量
var languageId = $('select#language_id :selected').val();