在我的驗證,我已經用過一次像什麼的oppposite「如果:?屬性」(Rails4 /活動記錄驗證)
validates :contact_name, presence: true
validates :contact_adress,
presence: true, if: :contact_name?,
現在有條件的存在,我想這樣做相反的:規定屬性的義務不存在其他屬性。如果我讓A爲空,那麼B必須填滿,反之亦然。
會這樣嗎?
validates :attribute_A, presence true, if:attribute_B!
validates :attribute_B, presence true, if:attribute_A!
不會做,除非魔? – Saurabh