我的 rails3.2 应用程序中有一个用于投诉的表单,该表单还同时建立了一个新公司和分支机构。一切正常,但我想将公司的 id 作为外键 company_id 存储在 Branch 表中。
这是我的投诉控制器:
def new
@complaint = Complaint.new
@complaint.build_company
@complaint.build_branch(:company_id => '#Trying to set the company ID here')
respond_to do |format|
format.html # new.html.erb
format.json { render json: @complaint }
end
end
我可以在:company_id =>
分配上面创建的对象的 id 之后放置什么?