update
アクションからアクションを呼び出す必要がある状況がありますcreate
。
def create
@product = Product.find_or_initialize_by_sku(params[:sku])
if @product.new_record?
respond_to do |format|
if @product.save
format.html { redirect_to @product, notice: 'Product was successfully created.' }
format.json { render json: @product, status: :created, location: @product }
else
format.html { render action: "new" }
format.json { render json: @product.errors, status: :unprocessable_entity }
end
end
else
update ##*** I am calling the update action at this point ***##
end
end
def update
@product = Product.find_or_initialize_by_sku(params[:sku])
respond_to do |format|
if @product.update_attributes(params[:product])
format.html { redirect_to @product, notice: 'Product was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @product.errors, status: :unprocessable_entity }
end
end
end
@product
しかし、あるアクションから別のアクションに変数 (この場合はインスタンス変数) を渡す最も効果的な方法がわからないため、データベースに対して 2 つの同一のクエリを作成することになります。
これを行うための「レール」の方法を理解しようとしています。ここで何をすべきですか (2 つの同一のデータベース クエリを作成するべきではないことがわかっているため)。
リダイレクトを実行しているかのようにセッションに保存しますか (このような別のアクション内からアクションを呼び出すときにリダイレクトを実行していますか?)
session[:product] = @product # in my create action
# then
@product = session[:product] # in my update action
キャッシングはこれをすべて議論の余地のあるものにしますか?