ruby-on-rails – has_many通过关联依赖的破坏在谁叫做破坏的条件下

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – has_many通过关联依赖的破坏在谁叫做破坏的条件下前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在before_destroy钩子中检查哪个对象(类)被称为destroy?

在下面的例子中,当一个病人被摧毁时,他们的约会也是如此(这就是我想要的);但是,如果有任何与该医生相关的预约,我不想让医生被销毁.

再次,有没有办法在before_destory回调中进行这样的检查?如果没有,是否还有其他方法可以根据通话的“方向”(即根据谁打电话)完成“破坏检查”?

class Physician < ActiveRecord::Base
  has_many :appointments,dependent: :destroy
  has_many :patients,through: :appointments
end


class Patient < ActiveRecord::Base
  has_many :appointments,dependent: :destroy
  has_many :physicians,through: :appointments
end


class Appointment < ActiveRecord::Base
  belongs_to :patient
  belongs_to :physician

  before_destroy :ensure_not_referenced_by_anything_important

  private

  def ensure_not_referenced_by_anything_important
    unless patients.empty?
      errors.add(:base,'This physician cannot be deleted because appointments exist.')
      false
    end
  end
end

解决方法

说啊:
class Physician < ActiveRecord::Base
  has_many :appointments,dependent: :restrict_with_exception
  has_many :patients,through: :appointments
end

请注意dependent :: restrict_with_exception.这将导致Active Record拒绝销毁任何具有相关约会记录的医生记录.

the API docsthe association basics guide.

原文链接:https://www.f2er.com/ruby/274278.html

猜你在找的Ruby相关文章