我很抱歉,但我如何檢查保存的關聯是否是new_record ?.因爲after_save或before_save在保存關聯後調用。 class Children
belongs_to parent
after_create :check_new_record_of_parent
# before_save :check_parent_saved # call this
使用Rails 5,我有一個問題,當我嘗試保存我的這2款機型之間的關聯之間保存:用戶和提供商 我的模型: class User < ApplicationRecord
# Relations
has_and_belongs_to_many :providers
end
class Provider < ApplicationRecord
# Relations