0

次のように、フォームに 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 %>

そしてそれは完全にうまく機能します。助けてください。

4

0 に答える 0