Awesome_nested_set
我有一个选择输入:
f.select :category_id,nested_set_options(Category, @categories) {|i| "#{'-' * i.level} #{i.name}" }
仅显示级别 > 的类别的最有效方法是什么? 1 ?
I have a select input:
f.select :category_id, nested_set_options(Category, @categories) {|i| "#{'-' * i.level} #{i.name}" }
What is the most efficient way to show only the categories with level > 1 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的类别数组已经从数据库中检索(即,这不是检索页面上类别的唯一调用)并且您预计该数组不会包含数百个类别,则可以执行以下操作:
@categories.to_ary.find { |猫|猫等级> 1 }
这在数组上进行查找,而不是通过数据库。您的另一个选择是使用named_scope。
If your categories array is already being retrieved from the database (i.e. this is not the only call to retrieve the categories on the page) and you do not anticipate the array holding hundreds of categories, you can do:
@categories.to_ary.find { |cat| cat.level > 1 }
This does a find on the array, rather than through the database. Your other option would be to use a named_scope.