gpt4 book ai didi

ruby-on-rails - 为什么关联的模型会被触及?

转载 作者:行者123 更新时间:2023-12-03 22:39:44 24 4
gpt4 key购买 nike

我有 3 个模型:

class DeliveryMethod
has_many :subscription_delivery_methods
has_many :subscriptions, :through => :subscription_delivery_methods
end

class SubscriptionDeliveryMethod < ActiveRecord::Base
belongs_to :subscription
belongs_to :delivery_method
end

class Subscription < ActiveRecord::Base
has_one :subscription_delivery_method
has_one :delivery_method, :through => :subscription_delivery_method
end

我像这样将交付方式分配给订阅:

s.delivery_method = DeliveryMethod.find 1

当我像上面那样进行分配时,Rails 会更新 subscription_delivery_methods,这是预期的:

UPDATE subscription_delivery_methods SET delivery_method_id = 1, updated_at = '2011-10-27 09:11:23' WHERE subscription_delivery_methods.id = 2

但是当我执行 s.save! 时,它会触及 DeliveryMethod,这是意外且不需要的:

UPDATE delivery_methods SET updated_at = '2011-10-27 08:40:53' WHERE delivery_methods.id = 1

我在关联上尝试了各种 :readonly:touch 标志,以防止发生此更新。我没有成功。你们知道如何阻止它吗?

非常感谢。

最佳答案

也许自动保存

 has_one :delivery_method, :through => :subscription_delivery_method, :autosave => false

关于ruby-on-rails - 为什么关联的模型会被触及?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7913895/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com