简体   繁体   中英

Rails: Custom validation message

I'm trying to make a simple custom validation message. The validation I'm using compiles and runs fine, but I don't see any change in the message:

validates :rating, :inclusion => { :in => 0..5 }, :presence => { :message => " must be within 0-5" }

The message I get is still Rating is not included in the list

I need to validate that rating is present and is a decimal between 0-5

Alright, I solved it. This is the validation that works:

validates :rating, :inclusion => { :in => 0..5, :message => " should be between 0 to 5" }
validates :rating, :presence => { :message => " cannot be blank" }

and I added this

validates :rating, :numericality => { :message => " should be a number" }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM