ユーザーと顧客情報の2つの別々のモデルで機能する3つの部分からなるユーザーサインアップがあります。リモートで送信するユーザーサインアップがあり、フォームの次の部分に移動します。current_user
CustomerInfo行を送信するときに変数を使用できるようにしたい。次のコードは、リモートなしでテストすると機能しますが、リモートでテストしても行がまったく作成されません。この変数の代わりに使用できる別の変数はありますか?それとも、これを達成するためのより良い方法はありますか?
def create
@customer_info = CustomerInfo.new(params[:customer_info].merge(:user_id => current_user.id))
respond_to do |format|
if @customer_info.save
format.html { redirect_to tasks_url, notice: 'Customer info was successfully created.' }
format.json { render json: tasks_url, status: :created, location: @customer_info }
else
format.html { render action: "new" }
format.json { render json: @customer_info.errors, status: :unprocessable_entity }
end
end
end