In questo esempio, è possibile visualizzare la convalida del campo (la squadra deve essere selezionata). E puoi vedere una convalida di classe/livello base. Ad esempio, è richiesto almeno un metodo di contatto, un telefono o una e-mail:
class Registrant
include MongoMapper::Document
# Attributes ::::::::::::::::::::::::::::::::::::::::::::::::::::::
key :name, String, :required => true
key :email, String
key :phone, String
# Associations :::::::::::::::::::::::::::::::::::::::::::::::::::::
key :team_id, ObjectId
belongs_to :team
...
# Validations :::::::::::::::::::::::::::::::::::::::::::::::::::::
validate :validate_team_selection
validate :validate_contact_method
...
private
def validate_contact_method
# one or the other must be provided
if phone.empty? and email.empty?
errors.add_to_base("At least one form of contact must be entered: phone or email")
end
end
def validate_team_selection
if registration_setup.require_team_at_signup
if team_id.nil?
errors.add(:team, "must be selected")
end
end
end
end
fonte
2010-11-01 20:27:07
Vedi terza risposta fino ad oggi (Rails 3+) soluzione –