0
我有父級和子級模型之間的一對多關係。如何一次性保存父級和嵌套子級?如何在rails中同時創建父級和子級模型
基本上。完成以下
# assumed @parent and @children is set
# @parent is attributes for parent
# @children is an array of @child attributes
def create
p = Parent.new @parent
p.what_do_i_do @children # what do I do here?
p.save
end