我收到错误“没有将符号隐式转换为整数”
这是我的代码:
# == Schema Information
#
# Table name: my_payments
#
# id :integer not null, primary key
# email :string
# ip :string
# status :string
# fee :decimal(6, 2)
# paypal_id :string
# total :decimal(8, 2)
# created_at :datetime not null
# updated_at :datetime not null
# shopping_cart_id :integer
#
class MyPayment < ActiveRecord::Base
belongs_to :shopping_cart
include AASM
aasm column: "status" do
state :created, initial: true
state :payed
state :failed
event :pay do
after do
shopping_cart.pay!
self.update_stock_products()
end
transitions from: :created, to: :payed
end
end
def update_stock_products
self.shopping_cart.in_shopping_carts.map { |i_sh|
product = i_sh.product
self_product = Product.where(id: product.id)
num = self_product[:stock]
res = num - i_sh.num_products
Product.update(product.id,stock: res)
}
end
end
错误在于:
num = self_product[:stock]
答案 0 :(得分:2)
self_product被视为一个数组(或类似数组的东西),因此它期望一个数字索引,而不是你想要的哈希或活动记录实例的符号。
问题在于:
self_product = Product.where(id: product.id)
这将返回一个ActiveRecord Relation对象。在其上使用[]运算符将运行查询并返回第n项。
您可能需要以下内容:
num = Product.find(product.id).stock
但是,如果您将购物车项目关联设置为product
,则您不应该这样做。你应该能够做到:
num = product.stock