-
Notifications
You must be signed in to change notification settings - Fork 0
Numbers
Majid Ahmaditabar edited this page Dec 11, 2021
·
8 revisions
- The field under validation must be numeric.
data = %{
number1: 2121,
number2: "2121" ----> return error
}
rules = [
%{
field: "number1",
validate: ["numeric"]
},
%{
field: "number2",
validate: ["numeric"]
}
]- The field under validation must be numeric and must have an exact length of value.
data = %{
age1: 12,
age2: 9 ---> return error min 2 digit required
}
rules = [
%{
field: "age1",
validate: ["digits:2"]
},
%{
field: "age2",
validate: ["digits:2"]
}
]