你不是被迫从父母那里开始的。怎么样呢
@children = Children.where(parent: parents)
在这种情况下,父母是一个数组 Parent 对象或 ActiveRecord::Relation
Parent
ActiveRecord::Relation
要么
@children = Children.where(parent_id: parent_ids)
在这种情况下,parent_ids是一个整数数组,id为 Parent 模型