Awesome_nested_set

发布于 2024-08-04 13:28:09 字数 162 浏览 5 评论 0原文

我有一个选择输入:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微凉 2024-08-11 13:28:09

如果您的类别数组已经从数据库中检索(即,这不是检索页面上类别的唯一调用)并且您预计该数组不会包含数百个类别,则可以执行以下操作:

@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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文