我正在尝试为 Web 应用程序创建一个下拉选择列表。此列表必须有 optgroups,必须有缩进(使用--
),并且组名必须是选项本身。由于 optgrouping 是一项要求,因此我需要使用其中一个group option helpers。由于一切都在一个模型中,我选择了grouped_options_for_select
.
我有一个实用的解决方案,但它很乱。有什么办法可以让这个更整洁吗?特别是对于辅助方法grouped_categories
,有没有更好的方法来创建嵌套数组,这样我就不需要多次调用数据库了?
风景;
<%= f.label :category_id %>
<%= f.select :category_id, grouped_options_for_select(grouped_categories.map{ |group| [group.first.name, group.second.map{|c| [c.name, c.id]}]}) %>
助手;
module CategoryHelper
#building an array of elements (optgroup, members), where optgroup is one category object instance,
# and members contains all category objects belonging to the optgroup, including the opt group object itself
def grouped_categories
@grouped_array = []
Category.where("parent_id is null").each do |g|
members = []
members << g
Category.where("parent_id = ?", g.id).each do |c|
indent_subcategory(c)
members << c
Category.where("parent_id = ?", c.id).each do |s|
indent_subsubcategory(s)
members << s
end
end
group = [g, members]
@grouped_array << group
end
@grouped_array
end
def indent_subcategory(cat)
cat.name = '--' + cat.name
end
def indent_subsubcategory(cat)
cat.name = '----' + cat.name
end
end