应用程序有Add to Cart
按钮,可以创建新的@line_item
(代码基于 Rails 的敏捷开发)。我添加了一个 Ajax 功能,因此Add to Cart
不会重新加载页面,并添加了@line_item to @cart
.
但是 Rails 每次按下按钮都会执行 3 次!
我按“添加到购物车”,它添加了 3 个项目。
另外,当我清空购物车时,它会问我三遍“你确定吗?” 不知道,什么可能导致这些,任何想法?
def create
@cart = current_cart
product = Product.find(params[:product_id])
@line_item = @cart.add_product(product.id)
respond_to do |format|
if @line_item.save
format.html { redirect_to(store_url) }
format.js
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
按钮:
<%= button_to 'Add to Cart' , line_items_path(:product_id => product),:remote => true %>
创建.js.erb:
$('#cart').html("<%= escape_javascript(render(@cart)) %>");
_cart.html.erb 模板:
<div class="cart_title" >Your Cart</div>
<table>
<%= render(cart.line_items) %>
<tr class="total_line" >
<td colspan="2" >Total</td>
<td class="total_cell" ><%= number_to_currency(cart.total_price) %></td>
</tr>
</table>
<%= button_to 'Empty cart' , cart, :method => :delete,
:confirm => 'Are you sure?' %>
_line_item.html.erb 模板:
<tr>
<td><%= line_item.quantity %>×</td>
<td><%= line_item.product.title %></td>
<td class="item_price" ><%= number_to_currency(line_item.total_price) %></td>
</tr>