0

如何为使用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
4

1 回答 1

0

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

我尝试使用它作为我的输入collection.map { |c| ['- ' * c.depth + c.name, c.id] },它工作正常。

于 2013-11-08T23:40:02.997 回答