我的表单中包含以下代码:
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,这是怎么做到的?