我有一个模型,其中验证了两个字段,但只有一个是强制性的。
我写了以下验证,但它不起作用:
validates_presence_of :results, :on => :update, :if => Proc.new { |order| order.results_image? }
validates_presence_of :results_image, :on => :update, :if => Proc.new { |order| order.results? }
我有一个模型,其中验证了两个字段,但只有一个是强制性的。
我写了以下验证,但它不起作用:
validates_presence_of :results, :on => :update, :if => Proc.new { |order| order.results_image? }
validates_presence_of :results_image, :on => :update, :if => Proc.new { |order| order.results? }