gpt4 book ai didi

ruby-on-rails - Rails HABTM after_add 回调在保存主对象之前触发

转载 作者:行者123 更新时间:2023-12-02 01:25:14 26 4
gpt4 key购买 nike

我有两个 ActiveRecord 模型,彼此之间具有 HABTM 关系。当我通过允许通过选中复选框添加区域的表单添加 AccessUnit 时,我收到一个异常,即 AccessUnitUpdaterJob 无法排队,因为传递的访问单元无法序列化(由于缺少标识符) 。当手动调用主对象上的保存时,问题得到解决,但当然这是一种解决方法,而不是正确的修复。

TLDR;看来 after_add 回调是在保存主对象之前触发的。我实际上不确定这是否是 Rails 中的错误或预期行为。我正在使用 Rails 5。

我遇到的确切错误是:

ActiveJob::SerializationError in AccessUnitsController#create

Unable to serialize AccessUnit without an id. (Maybe you forgot to call save?)

下面是一些代码,以便您可以了解问题的上下文:

class AccessUnit < ApplicationRecord
has_and_belongs_to_many :zones, after_add: :schedule_access_unit_update_after_zone_added_or_removed, after_remove: :schedule_access_unit_update_after_zone_added_or_removed

def schedule_access_unit_update_after_zone_added_or_removed(zone)
# self.save adding this line solves it but isn't a proper solution
puts "Access unit #{name} added or removed to zone #{zone.name}"

# error is thrown on this line
AccessUnitUpdaterJob.perform_later self
end
end

class Zone < ApplicationRecord
has_and_belongs_to_many :access_units
end

最佳答案

在我看来这不是一个错误。一切都按预期进行。在保存此图表之前,您可以创建复杂的对象图表。在此创建阶段,您可以将对象添加到关联中。这是您想要触发此回调的时间点,因为它显示的是 after_add 而不是 after_save

例如:

@post.tags.build name: "ruby" # <= now you add the objects
@post.tags.build name: "rails" # <= now you add the objects
@post.save! # <= now it is to late, for this callback, you added already multiple objects

也许使用 before_add 回调更有意义:

class Post
has_many :tags, before_add: :check_state

def check_state(_tag)
if self.published?
raise CantAddFurthorTags, "Can't add tags to a published Post"
end
end
end

@post = Post.new
@post.tags.build name: "ruby"
@post.published = true
@post.tags.build name: "rails" # <= you wan't to fire the before_add callback now, to know that you can't add this new object
@post.save! # <= and not here, where you can't determine which object caused the error

您可以在《The Rails 4 Way》一书中阅读一些有关这些回调的内容

就你的情况而言,你必须重新思考你的逻辑。也许您可以使用 after_save 回调。我的 2 美分:您考虑从回调切换到服务对象。回调并不是没有代价的。它们并不总是易于调试和测试。

关于ruby-on-rails - Rails HABTM after_add 回调在保存主对象之前触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40665060/

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