Railsを学んでいるときに、SamRubyの本でこの例を見つけました。
app / controllers / line_items_controller.rb
def create
@cart = current_cart
product = Product.find(params[:product_id])
@line_item = @cart.line_items.build
@line_item.product = product
respond_to do |format|
if @line_item.save
# this following line is strange for me
format.html { redirect_to(@line_item.cart, :notice => 'Line item was successfully created.') }
format.xml { render :xml => @line_item, :status => :created, :location => @line_item }
else
format.html { render :action => "new" }
format.xml { render :xml => @line_item.errors,
:status => :unprocessable_entity }
end
end
end
redirect_to(@line_item.cart,...)
単に置き換えられたセクションではないのはなぜredirect_to(@cart,...)
ですか?
実際、@cartはアクセス可能なインスタンス変数です。
@line_item
この例では、カートを取得するために使用する必要がありますか?