如果一个模型在同一个字段上有两个格式验证,那么该模型需要什么才能有效?该字段是否必须与两个验证匹配,还是只需要与其中一个验证匹配?
考虑以下模型:
class Model < ActiveRecord::Base
validates :field, format: { with: /this/ }
validates :field, format: { with: /that/ }
end
该模型将如何验证?
如果一个模型在同一个字段上有两个格式验证,那么该模型需要什么才能有效?该字段是否必须与两个验证匹配,还是只需要与其中一个验证匹配?
考虑以下模型:
class Model < ActiveRecord::Base
validates :field, format: { with: /this/ }
validates :field, format: { with: /that/ }
end
该模型将如何验证?