从collection_select rails获取所选值

时间:2013-08-05 18:45:31

标签: ruby-on-rails selection

我的表单中有一个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 %>

它完美无缺。请帮忙。

0 个答案:

没有答案