0

伙计们,我的代码是我想选择一个父主题,并且在选择后我需要使用该选定的主题在父字段中列出其中的主题我该怎么做?

    <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>
4

1 回答 1

2

这会有帮助吗?表单中依赖 Rails 的 collection_select 字段

如果没有,我将要构建一些东西,如果它不丑,可能会很乐意分享它!

于 2014-11-04T22:55:51.820 回答