製品を作成するための以下のコードがあります。
def create
@customer = Customer.find(params[:customer_id])
@product = @customer.products.build(params[:product])
respond_to do |format|
if @product.save
format.html { redirect_to customer_products_path(@customer), notice: 'Product was successfully created.' }
else
format.html { render action: "new" }
format.json { render json: customer_products_path.errors, status: :unprocessable_entity }
end
end
end
私が使用するフォームを生成するには:
<%= form_for([@customer, @product]) do |f| %>
さて、データをDBに保存する前に、別の確認ページに使用を転送するにはどうすればよいでしょうか。また、編集リンクがあるため、必要に応じてユーザーは変更を加え、最終的にレコードを送信できます。
stackoverflow に関する他の質問を見ましたが、必要なものを作成できませんでした。任意のガイダンスをいただければ幸いです。