0

应用程序有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 %>&times;</td>
<td><%= line_item.product.title %></td>
<td class="item_price" ><%= number_to_currency(line_item.total_price) %></td>
</tr>
4

1 回答 1

0

问题解决了。

在我的视图应用程序布局中,我认为这样做是正确的

<!DOCTYPE html>
<html>
<head>
  <title>Store</title>
  <%= stylesheet_link_tag "store" %>
  <%= javascript_include_tag 'application' %>
  <%= csrf_meta_tags %>
  <title>Cart</title>
  <%= stylesheet_link_tag "carts" %>
  <%= javascript_include_tag 'cart' %> #this
  <%= csrf_meta_tags %>

实际上,我想一旦您在主页上使用了“应用程序”,#this 就会重复执行 JS 代码

于 2013-02-17T16:33:44.593 回答