形式化+嵌套类别
我有一个文章模型和一个类别模型。类别充当树。
构建选择列表以允许管理员从选择列表中选择类别以便稍后将其与文章关联的最佳方法是什么?
semantic_form_for(@article) do |f|
f.input :title, :as => :string
f.input :content, :as => :text
f.input :category, :collection => #what should go here ?
end
I have an article model and an category model. Category act as tree.
What is the best approch to build a select list to allow the administrator to select an category from a select list to associate it later with an article ?
semantic_form_for(@article) do |f|
f.input :title, :as => :string
f.input :content, :as => :text
f.input :category, :collection => #what should go here ?
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
或者你可以将它们指定为这样(来自文档):
Try this:
Alternatively you could specify them as this (from the docs):