标准的ActionRecord效验错误信息

@@default_error_messages = { 
  :inclusion => "is not included in the list", 
  :exclusion => "is reserved", 
  :invalid => "is invalid", 
  :confirmation => "doesn't match confirmation", 
  :accepted => "must be accepted", 
  :empty => "can't be empty", 
  :blank => "can't be blank", 
  :too_long => "is too long (maximum is %d characters)", 
  :too_short => "is too short (minimum is %d characters)", 
  :wrong_length => "is the wrong length (should be %d characters)", 
  :taken => "has already been taken", 
  :not_a_number => "is not a number" 
}

你可能感兴趣的:(ruby)