validation
Here are 3,318 public repositories matching this topic...
-
Updated
Dec 13, 2020 - TypeScript
-
Updated
Dec 4, 2020 - JavaScript
Are you submitting a bug report or a feature request?
Bug? I guess.
What is the current behavior?
-
Updated
Dec 13, 2020 - PHP
-
Updated
Dec 13, 2020 - TypeScript
Package version eg. v8, v9:
v9
Issue, Question or Enhancement:
Is it possible to use oneof validation with values containing space character? Tried with single quote but it did not seem to work.
Code sample, to showcase or reproduce:
type Data struct {
Status string `json:"status" validate:"required,oneof='Awaiting Verification' 'Verified' 'Failed Veri
-
Updated
Dec 12, 2020 - JavaScript
No indication of Vue 3 support in documentation. No information on latest version installation.
-
It is hard to understand for not experienced user wether Vuelidate supports Vue3.
-
Instruction informs that to install one should run npm install vuelidate --save. But no indication that it will install version [email protected].
And no indication how to install last version
I tried npm install vuelidate@next --save, npm install [email protected] --save with no good result.
Only after l
-
Updated
Dec 13, 2020 - PHP
-
Updated
Nov 25, 2020 - JavaScript
-
Updated
Dec 11, 2020 - Python
-
Updated
Dec 7, 2020 - TypeScript
-
Updated
Dec 12, 2020 - Python
-
Updated
Dec 11, 2020 - TypeScript
-
Updated
Dec 12, 2020 - TypeScript
type Item struct {
Bt int `valid:"range(1|100)"`
}
func main() {
t := Item{-1}
ok, err := govalidator.ValidateStruct(t)
fmt.Println(ok, err)
}
output:Bt: Validator range(1|100) doesn't support kind int;
-
Updated
Dec 8, 2020 - Swift
-
Updated
Dec 13, 2020 - TypeScript
-
Updated
Dec 11, 2020 - JavaScript
-
Updated
Dec 11, 2020 - JavaScript
-
Updated
Dec 9, 2020 - TypeScript
-
Updated
Nov 27, 2020 - Python
-
Updated
Dec 9, 2020 - Makefile
-
Updated
Dec 10, 2020 - PHP
-
Updated
Nov 4, 2020 - Go
# doc and more doc
Add more doc in the code urgent the Validator class
-
Updated
Dec 11, 2020 - TypeScript
-
Updated
Jul 10, 2020 - JavaScript
-
Updated
Dec 7, 2020 - PHP
Improve this page
Add a description, image, and links to the validation topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the validation topic, visit your repo's landing page and select "manage topics."
When validator used like that
isMobilePhone(value, 'any', { strictMode: false })
For the valid phone number from Switzerland
+411122112211
it returns
false
. expectedtrue
.on the other hand, our BE uses simple regex for Phone validation
'/^\+([0-9]){8,16}$/'
and it pass.