我有这些型号
class Parent
has_many: children
end
class Child
belongs_to: parent
end
我想执行以下操作而不保存/更新父对象,只需保存/更新子对象。
parent1 = Parent.find 1
parent1.children.first.name = "big brother"
parent1.save
我知道只获取子对象然后将其保存为
child.find_by_parent_id 1
child.first_name = "big bro"
child.save
,这只会保存孩子。但是我想通过父级保存它,而父级不会被更新/保存