我这样做是这样的:
@disabled_options = []
Category.where('ancestry is NULL').each do |cat|
@disabled_options << cat.id if cat.has_children?
end
有没有更优雅的方式来获得无子女的所有父?
我这样做是这样的:
@disabled_options = []
Category.where('ancestry is NULL').each do |cat|
@disabled_options << cat.id if cat.has_children?
end
有没有更优雅的方式来获得无子女的所有父?
Category.where("id IN (SELECT parent_id FROM categories)")
假设parent_id
是指向父类别的字段。
这将选择被指出用“PARENT_ID”这些类别,所以如果有一个孩子,孩子就会有“PARENT_ID”集,因此通过“PARENT_ID”引用的类别有孩子。
这一个班轮可以帮助你。
Category.where(id: Category.pluck(:ancestry).compact.map { |e| e.split('/') }.flatten.uniq)