在我的rails应用中,我在_navbar.html.erb
<% if @cart.total_price > 0 %>
<%= link_to @cart do %>
<i class="fa fa-shopping-cart"> € </i>
<%= @cart.total_price %>
<% end %>
<% else %>
<a href="#" class="menu-cart"><i class="fa fa-shopping-cart"></i> € 0.00</a>
<% end %>
显示@cart.total_price
,但我希望它显示购物车中的总项目。
我不确定该怎么做
这些代码大部分来自Udemy教程,但它对我的体验有所帮助,所以我觉得有点失去了根据我的需要修改它。
我一直试图将@product_item
添加到上面的代码中,但运气不错,任何人都可以看看这个并引导我完成这个过程。
我在application_controller.rb
before_action :set_cart
def set_cart
@cart = Cart.find(session[:cart_id])
rescue ActiveRecord::RecordNotFound
@cart = Cart.create
session[:cart_id] = @cart.id
end
在carts_controller.rb
我有这个:
class CartsController < ApplicationController
before_action :set_cart, only: [:show, :destroy]
rescue_from ActiveRecord::RecordNotFound, with: :invalid_cart
def new
@cart = Cart.new
end
def show
@images = ["1.jpg", "2.jpg", "3.jpg", "4.jpg", "5.jpg"]
@random_no = rand(5)
@random_image = @images[@random_no]
end
def destroy
@cart.destroy if @cart.id == session[:cart_id]
session[:cart_id] = nil
redirect_to root_url, notice: 'Your Cart is Empty'
end
private
def set_cart
@cart = Cart.find(params[:id])
end
def cart_params
params[:cart]
end
def invalid_cart
logger_error = 'You are trying to access invalid cart'
redirect_to root_url, notice: 'Invalid Cart'
end
end
在controllers/concerns
我这个档案current_cart.rb
module CurrentCart
private
def set_cart
@cart = Cart.find(session[:cart_id])
rescue ActiveRecord::RecordNotFound
@cart = Cart.create
session[:cart_id] = @cart.id
end
end
然后我有product_items_controller.rb
并且有这段代码:
class ProductItemsController < ApplicationController
include CurrentCart
before_action :set_cart, only: [:create]
before_action :set_product_item, only: [:show, :destroy]
def create
@product = Product.find(params[:product_id])
@product_item = @cart.add_product(@product.id)
if @product_item.save
redirect_to root_url, notice:'Product added to Cart'
else
render :new
end
end
private
def set_product_items
@product_item = ProductItem.find(params[:id])
end
def product_item_params
params.require(:product_item).permit(:product_id)
end
end
相关模型为cart.rb
和product_item.rb
cart.rb
中的我有这段代码:
class Cart < ActiveRecord::Base
has_many :product_items, dependent: :destroy
def add_product(product_id)
current_item = product_items.find_by(product_id: product_id)
if current_item
current_item.quantity += 1
else
current_item = product_items.build(product_id: product_id)
end
current_item
end
def total_price
product_items.to_a.sum{|item| item.total_price}
end
end
在product_item.rb
中有以下代码:
class ProductItem < ActiveRecord::Base
belongs_to :product
belongs_to :cart
belongs_to :order
def total_price
product.price * quantity
end
end
答案 0 :(得分:1)
您可以在@cart
中重写_navbar.html.erb
代码,看起来像这样,它应该像上一个块一样工作但显示product_items.count
而不是total_price
< / p>
<% if @cart.product_items.count > 0 %>
<%= link_to @cart do %>
<i class="fa fa-shopping-cart"></i>
<%= @cart.product_items.count %>
<% end %>
<% else %>
<a href="#" class="menu-cart"><i class="fa fa-shopping-cart"></i> 0 </a>
<% end %>
答案 1 :(得分:0)
如果您想要购物车中的总商品,只需在quantity
模型中获取product_items
列与Cart
之和,如下所示:
def total_quantity
product_items.sum(:quantity)
end
然后你可以从视图(或其他任何地方)调用@cart.total_quantity
。
请注意,通过在sum
上调用product_items
,这是一个关系(而不是数组),这将使用SQL直接计算总和:
SELECT SUM(`product_items`.`quantity`) FROM product_items
WHERE `product_items`.`cart_id` = 123
其中123
是购物车的ID。
这比在产品项目的数组上调用sum
更有效率(即product_items.to_a.sum(&:quantity)
),这将加载每个产品项目,然后对数量求和。但要么两种都应该有效,并且取决于你正在做什么,后者sum
可能会更好地满足你的需求。