在此之前,我要感谢您的帮助
我有一个这样的模型:
attr_protected nil
belongs_to :product
belongs_to :user
before_create :add_ammount
def carted_product_price(ammount, price)
ammount * price
end
def add_ammount
carted_product = CartedProduct.where(:product_id => self.product_id, :user_id => self.user_id)
if carted_product
carted_product.first.ammount += self.ammount
carted_product.first.update_attributes(:ammount => carted_product.first.ammount)
else
self.save
end
end
它将采购订单保存在一个名为 Carted_Products 的表中,该表连接到 belogings 中的用户和产品
问题是,当 在创建 之前执行时,我希望它更新表中的记录,如果记录已经存在,则添加 Controller 传递的 ammount,如果不存在,则创建一个,只要 iv 完成,它就会更新 ammount但仍然使用顺序中传递的参数创建一个新的,我希望它只更新,而不是在找到记录时执行这两个操作
谢谢你的耐心
编辑:
尝试在更新属性后返回 false,它取消过滤器,并且不创建或更新属性
最佳答案
在 false
过滤器中返回 before_create
以防止保存对象表单。 add_amount
不负责保存对象,不应自行调用 save
。
关于ruby-on-rails - before_create 仍然保存,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11572007/