gpt4 book ai didi

ruby-on-rails - Rails Cart 销毁时返回产品数量

转载 作者:行者123 更新时间:2023-12-04 12:51:58 26 4
gpt4 key购买 nike

我是 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 = 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>

还尝试将路径直接调用到购物车 Controller 方法中。它显示购物车已成功清空,但当我在 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

最佳答案

关于destroy的问题,其实可以在model层面进行。

在您的 LineItem 模型上,您可以...

before_destroy { |record| record.product.increment!(:quantity, record.quantity }

这假设 LineItem 有...

belongs_to :product

并且无论在哪里销毁 line_item 记录,都将确保更新产品数量。

关于ruby-on-rails - Rails Cart 销毁时返回产品数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45192983/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com