用于ActiveRecord的Rails未定义方法::计算购物车项目的关系错误

时间:2012-11-02 10:41:29

标签: ruby-on-rails ruby-on-rails-3 activerecord

我正在尝试计算购物车中包含的所有商品的总价。但是我得到了undefined method total_cart_price for ActiveRecord::Relation:xxx

购物车型号(shop_cart.rb)

has_many :shop_cart_items, :dependent => :destroy


  def total_cart_price
    shop_cart_items.to_a.sum { |item| item.total_price }
  end

购物车商品型号(shop_cart_item.rb)

attr_accessible :quantity, :shop_cart_id, :shop_product_id

  belongs_to :shop_product
  belongs_to :shop_cart


  def total_price
    shop_product.sell * quantity
  end

购物篮视图(shop / basket.html.erb)

<tbody>
    <% @cart_items.each do |item| %>
        <tr>
        <td><%= item.shop_product.name %></td>
        <td><%= number_to_currency(item.shop_product.sell) %></td>
        <td><%= item.quantity %></td>
        <td><%= number_to_currency(item.total_price) %></td>
        </tr>
    <% end %>
    <tr>
    <td></td>
    <td></td>
    <td>Subtotal:</td>
    <td><%= number_to_currency(@cart_items.total_cart_price) %></td>
    </tr>
</tbody>

单个商品的总价格合理;错误是试图计算所有项目的总和。

我没有shop_cart控制器或视图,因为我从商店#basket视图调用方法 - 不确定这是否是导致问题的原因?

任何帮助都非常感激。

1 个答案:

答案 0 :(得分:0)

试试这个, @cart_items.shop_cart.total_cart_price这是一种购物车方式。