I'm using Rails 3.0.9 and jQuery 1.6.2 with jQuery-ujs.
Basically I'd like to ajaxfy my "add to cart" action.
In my view:
<td><%= button_to "Add to cart", line_items_path(:coupon_id => coupon, :format => :js), :remote => true %>
In my controller:
def create
@cart = current_cart
coupon = Coupon.find(params[:coupon_id])
@line_item = @cart.add_coupon(coupon.id)
respond_to do |format|
if @line_item.save
format.html { redirect_to(@line_item.cart) }
format.js {render :layout => false, :content_type => 'text/javascript'}
format.xml { render :xml => @line_item, :status => :created, :location => @line_item }
else
format.html { render :action => "new" }
format.js {render :layout => false, :content_type => 'text/javascript'}
format.xml { render :xml => @line_item.errors, :status => :unprocessable_entity }
end
end
end
I've also created a create.js.erb:
$("#my_cart").html("<%= escape_javascript(render(:partial => 'layouts/mycart')) %>");
to update the cart item number whenever a new item is added.
When I click the "add to cart" button, a JS POST request is sent to the server:
Started POST "/line_items.js?coupon_id=1" for 127.0.0.1 at Thu Aug 18 00:04:31 +0800 2011
Processing by LineItemsController#create as JS
And the response from the server is:
Rendered layouts/_mycart.html.erb (5.3ms)
Rendered line_items/create.js.erb (28.9ms)
Completed 200 OK in 127ms (Views: 58.7ms | ActiveRecord: 3.0ms)
The response's body contains the javascript code to update my cart:
$("#my_cart").html("<li id=\"my_cart\"><a href=\"/carts/10\">My cart(1)<\/a>\n<\/li>");
However, the web page is not updated. I tried different browsers (Chrome, Firefox, Safari). But if I manually run this code in Firebug's console, the page got updated. I've googled for a day and tried different solutions. None of them worked me. Could someone solve my problem?
Here's the code generated for button_to:
<form method="post" action="/line_items.js?coupon_id=1" data-remote="true" class="button_to"><div><input type="submit" value="Add to cart" /><input name="authenticity_token" type="hidden" value="MdHScf0JVNu2UFXLxuindDvZ5TPBztfMMzv57w1LWX8=" /></div></form>
#my_cartexists? Try to test it with simple alert – fl00r Aug 17 '11 at 16:16