0

私は私のフォームにこのコードを持っています:

guidances/new.html.erb
<%= f.association :employee_department, as: :select %>
<%= f.input :guidance_supervisor do %>
  <%= f.select :guidance_supervisor, 
  Employee.where('guidance_supervisor' => true).map(&:full_name) %>
<% end %>

そして、その部門に所属する従業員を表示させる必要がある部門を選択するときに、 simple_form を使用していますが、これを実現する方法は何ですか?

4

1 に答える 1