如何使用closure_tree创建嵌套的选择表单

时间:2013-08-21 20:18:52

标签: ruby-on-rails

如何为使用closure_tree(https://github.com/mceachen/closure_tree)的Category模型创建simple_form选择字段?

我希望我的选择表格像

Category 1
--Child1 of Category 1
--Child2 of Category 1
--Child3 of Category 1 

Category 2
--Child1 of Category 2
--Child2 of Category 2
--Child3 of Category 2

1 个答案:

答案 0 :(得分:0)

请在此处阅读:https://github.com/stefankroes/ancestry/wiki/Creating-a-selectbox-for-a-form-using-ancestry,它应该会有所帮助。

我尝试将此用于我的输入collection.map { |c| ['- ' * c.depth + c.name, c.id] },它运行正常。