Rails3.2アプリ内に苦情用のフォームがあり、同時に新しい会社とブランチも構築します。それはすべて正常に機能しますが、会社の ID を Branch テーブルの外部キー company_id として保存したいと考えています。
これは私の苦情管理者です:
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 を割り当てるには、後に何を配置できますか?