1

我正在尝试根据其中一个父列中的值来确定子记录数组的范围。我正在尝试查找属于“捆绑”类别的产品的所有 ShoppingCartItems。

我正在尝试使用acts_as_shopping_cart_gem

我的模特。

用户.rb

class User < ActiveRecord::Base
  has_many :shopping_carts, dependent: :destroy
end

购物车.rb

class ShoppingCart < ActiveRecord::Base
  acts_as_shopping_cart_using :shopping_cart_item
  belongs_to :user
  has_many :shopping_cart_items, dependent: :destroy
  has_many :products, through: :shopping_cart_items
end

产品.rb

class Product < ActiveRecord::Base
  has_many :shopping_cart_items,  dependent: :destroy
end

ShoppingCartItem.rb

class ShoppingCartItem < ActiveRecord::Base
  belongs_to :product,  dependent: :destroy

  scope :bundles,  ->  { 
    joins(:product).where('products.category = ?', 'Bundles') unless category.blank?
  }

end

我收到此错误:

> undefined local variable or method `category' for
> #<Class:0x007fc0f40310d0>
4

3 回答 3

1

您的问题实际上很简单-您没有在任何地方定义category变量。

我就是这样做的(广义范围):

scope :by_category, lambda { |category|
  joins(:product).where(products: { category: category })
}

请注意,没有unless声明 - 如果类别未传递给范围,它将引发 ArgumentError。

然后使用任何类别的范围:

ShoppingCartItem.by_category('Bundles')

为防止将空白类别传递到范围内,只需确保传递正确的字符串。您可以创建类别下拉列表:

Product.pluck(:category)

或类似的东西,如果它是用户界面的一部分。

于 2016-02-01T19:40:51.307 回答
0

您范围内的类别字段与 ShoppingCartItem 相关吗?如果是这样,请尝试self.category.blank?。如果没有,只需删除除非语句。

于 2016-02-01T19:41:53.817 回答
0

也许您需要添加Category模型并添加此关系:

class Product < ActiveRecord::Base
  has_many :shopping_cart_items,  dependent: :destroy
  belongs_to :category
end
于 2016-02-01T19:44:10.323 回答