开发者

Use proc in Validation

开发者 https://www.devze.com 2023-02-09 09:24 出处:网络
In ruby on rails guide, there is a section 5.3 Using a Proc with :if and :unless discussed about Using a Proc with :if and :unless in validation helper. It gives the following example:

In ruby on rails guide, there is a section 5.3 Using a Proc with :if and :unless discussed about Using a Proc with :if and :unless in validation helper. It gives the following example:

class Account < ActiveRecord::Base
  validates_confirmation_of :password,
    :unless => Proc.new { |a| a.password.blank? }
end

Does this 'a' in Proc refers to the current Account instance? Can I understand it(the 'a') as the reference of the current Account instance?

is t开发者_如何学Che :password and a.password point at the same thing?


That is precisely what it is. a refers to the object being validated.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号