伙计们,我的代码是我想选择一个父主题,并且在选择后我需要使用该选定的主题在父字段中列出其中的主题我该怎么做?
<label>Parent Subject</label>
<div class="field">
<%= collection_select :topic, :subject_id, Subject.all, :id, :name %>
</div>
<label>Parent Topic</label>
<div class="field">
<%= collection_select :topic, :parent_id, ?????, :id, :name %>
</div>