This commit is contained in:
qiantao 2020-06-25 22:11:32 +08:00
parent 86935ada01
commit e725192072
1 changed files with 10 additions and 3 deletions

View File

@ -16,9 +16,11 @@ package validation
import ( import (
"fmt" "fmt"
"github.com/astaxie/beego/logs"
"reflect" "reflect"
"regexp" "regexp"
"strings" "strings"
"sync"
"time" "time"
"unicode/utf8" "unicode/utf8"
) )
@ -57,6 +59,8 @@ var MessageTmpls = map[string]string{
"ZipCode": "Must be valid zipcode", "ZipCode": "Must be valid zipcode",
} }
var once sync.Once
// SetDefaultMessage set default messages // SetDefaultMessage set default messages
// if not set, the default messages are // if not set, the default messages are
// "Required": "Can not be empty", // "Required": "Can not be empty",
@ -84,9 +88,12 @@ func SetDefaultMessage(msg map[string]string) {
return return
} }
for name := range msg { once.Do(func() {
MessageTmpls[name] = msg[name] for name := range msg {
} MessageTmpls[name] = msg[name]
}
})
logs.Warn(`you must SetDefaultMessage at once`)
} }
// Validator interface // Validator interface