祖先 - 如何让所有的父母没有子女?(Ancestry - how to get all paren

2019-09-19 04:27发布

我这样做是这样的:

@disabled_options = []
Category.where('ancestry is NULL').each do |cat|
  @disabled_options << cat.id if cat.has_children?
end

有没有更优雅的方式来获得无子女的所有父?

Answer 1:

Category.where("id IN (SELECT parent_id FROM categories)")

假设parent_id是指向父类别的字段。

这将选择被指出用“PARENT_ID”这些类别,所以如果有一个孩子,孩子就会有“PARENT_ID”集,因此通过“PARENT_ID”引用的类别有孩子。



Answer 2:

这一个班轮可以帮助你。

Category.where(id: Category.pluck(:ancestry).compact.map { |e| e.split('/') }.flatten.uniq)


文章来源: Ancestry - how to get all parent without children?