我是rails的新手,拥有一个简单的产品商店网站。当用户将产品添加到购物车或更新购物车中的line_item数量时,它将根据需要添加/删除基本产品数量。但是,当他们清空他们的购物车(删除/销毁购物车)时,它不会恢复基本产品数量,就像他们没有购买任何东西一样。如何更新destroy方法以将列出的line_items返回到原始产品数量?
line_items_controller.rb - 在购物车中完全清空一个产品line_item并增加基本产品数量的示例方法:
def empty
product = Product.find(params[:product_id])
@line_item = @cart.empty_product(product)
@total = @line_item.quantity
product.increment!(:quantity, @total)
respond_to do |format|
if @line_item.save
format.html { redirect_to :back, notice: 'Product removed.' }
format.js
format.json { render :show, status: :ok, location: @line_item }
else
format.html { render :edit }
format.json { render json: @line_item.errors, status: :unprocessable_entity }
end
end
end
carts / show.html.erb - 调用销毁/清空购物车:
<%= link_to 'Empty Cart', @cart, method: :delete, data: {confirm: 'Are you sure you want to empty your cart?'}, :class => 'btn btn-danger whiteText' %>
carts_controller.rb - 销毁购物车的当前方法:
def destroy
@cart.destroy if @cart.id == session[:cart_id]
session[:cart_id] = nil
respond_to do |format|
format.html { redirect_to root_path, notice: 'Cart was emptied.' }
format.json { head :no_content }
end
end
carts_controller.rb - 我正在尝试做什么(我认为这可能存在问题,因为它不知道如何解决产品= Product.find(params [:product_id])):
def destroy
@cart.destroy if @cart.id == session[:cart_id]
@cart.line_items.each do
product = Product.find(params[:product_id])
@total = @line_item.quantity
product.increment!(:quantity, @total)
end
session[:cart_id] = nil
respond_to do |format|
format.html { redirect_to root_path, notice: 'Cart was emptied.' }
format.json { head :no_content }
end
end
修改
试图改变破坏方法:
def destroy
if @cart.id == session[:cart_id]
@cart.line_items.each do |l|
product = Product.where(:id => l.product_id)
@total = @l.quantity
product.increment!(:quantity, @total)
end
@cart.destroy
end
session[:cart_id] = nil
respond_to do |format|
format.html { redirect_to root_path, notice: 'Cart was emptied.' }
format.json { head :no_content }
end
end
它给了我以下错误,即使我能够使用增量!关于line_items_controller中的产品数量:
undefined method `increment!' for #<Product::ActiveRecord_Relation:0xb5ad1b4>
还尝试直接调用路径到carts控制器方法。它显示购物车成功清空,但是当我在html中调用相同的方法时,不会将产品数量返回到它应该是什么样式:
if @cart.id == session[:cart_id]
@cart.line_items.each do |l|
empty_line_item_path(product_id: l.product)
end
@cart.destroy
end
答案 0 :(得分:3)
关于destroy的问题,您实际上可以在模型级别执行此操作。
在LineItem模型上,您可以执行...
before_destroy { |record| record.product.increment!(:quantity, record.quantity }
这假设LineItem有......
belongs_to :product
无论line_item记录在何处销毁,都将确保更新产品数量。
答案 1 :(得分:2)
对于编辑部分后的错误,您有......
product = Product.where(:id => l.product_id)
@total = @l.quantity
product.increment!(:quantity, @total)
where
方法不返回单个产品,它返回生产关系(可能只包含一个产品)。
更好的是......
product = Product.find_by(:id => l.product_id)
@total = @l.quantity
product.increment!(:quantity, @total)
...将返回产品对象。