我的表单中有一个collection_select:
<%= rf.collection_select :u_org, Org.all, :id, :name %>
我希望从这个表单助手中选择值,以便我可以根据以下选项填充另一个collection_select:
<% @org = Org.find_by_id(##the selected id##) %>
这样填充:
<%= rf.collection_select :depart, @org.departments, :id, :department_name %>
我用
尝试过<% @org = Org.first %>
它完美无缺。请帮忙。