比如密码,很多网站在注册时,要求再次输入密码。如果是其它字段,又比如 Email,该如何做呢?
增加一些验证可以实现吧。
validate :reqired_active_code,:on => :create def reqired_active_code if ("010345782"!= @_active_code) then errors.add(:active_code, "企业激活码不正确") end end
@jimrokliu 非常非常感谢 :)