mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
Merge pull request #564 from arieslee/master
This commit is contained in:
commit
52de11b1fe
@ -7,10 +7,6 @@
|
|||||||
package gvalid
|
package gvalid
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"regexp"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/gogf/gf/container/gmap"
|
"github.com/gogf/gf/container/gmap"
|
||||||
"github.com/gogf/gf/encoding/gjson"
|
"github.com/gogf/gf/encoding/gjson"
|
||||||
"github.com/gogf/gf/net/gipv4"
|
"github.com/gogf/gf/net/gipv4"
|
||||||
@ -18,6 +14,9 @@ import (
|
|||||||
"github.com/gogf/gf/os/gtime"
|
"github.com/gogf/gf/os/gtime"
|
||||||
"github.com/gogf/gf/text/gregex"
|
"github.com/gogf/gf/text/gregex"
|
||||||
"github.com/gogf/gf/util/gconv"
|
"github.com/gogf/gf/util/gconv"
|
||||||
|
"regexp"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@ -192,7 +191,6 @@ func Check(value interface{}, rules string, msgs interface{}, params ...interfac
|
|||||||
} else {
|
} else {
|
||||||
match = true
|
match = true
|
||||||
}
|
}
|
||||||
|
|
||||||
// 大小范围
|
// 大小范围
|
||||||
case "min":
|
case "min":
|
||||||
fallthrough
|
fallthrough
|
||||||
@ -522,10 +520,11 @@ func checkRequired(value, ruleKey, ruleVal string, params map[string]string) boo
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 对字段值长度进行检测
|
// 对字段值长度进行检测
|
||||||
func checkLength(value, ruleKey, ruleVal string, customMsgMap map[string]string) string {
|
func checkLength(value, ruleKey, ruleVal string, customMsgMap map[string]string) string {
|
||||||
msg := ""
|
msg := ""
|
||||||
|
runeArray := gconv.Runes(value)
|
||||||
|
valueLen := len(runeArray)
|
||||||
switch ruleKey {
|
switch ruleKey {
|
||||||
// 长度范围
|
// 长度范围
|
||||||
case "length":
|
case "length":
|
||||||
@ -542,7 +541,7 @@ func checkLength(value, ruleKey, ruleVal string, customMsgMap map[string]string)
|
|||||||
max = v
|
max = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(value) < min || len(value) > max {
|
if valueLen < min || valueLen > max {
|
||||||
if v, ok := customMsgMap[ruleKey]; !ok {
|
if v, ok := customMsgMap[ruleKey]; !ok {
|
||||||
msg = errorMsgMap.Get(ruleKey)
|
msg = errorMsgMap.Get(ruleKey)
|
||||||
} else {
|
} else {
|
||||||
@ -556,7 +555,7 @@ func checkLength(value, ruleKey, ruleVal string, customMsgMap map[string]string)
|
|||||||
// 最小长度
|
// 最小长度
|
||||||
case "min-length":
|
case "min-length":
|
||||||
if min, err := strconv.Atoi(ruleVal); err == nil {
|
if min, err := strconv.Atoi(ruleVal); err == nil {
|
||||||
if len(value) < min {
|
if valueLen < min {
|
||||||
if v, ok := customMsgMap[ruleKey]; !ok {
|
if v, ok := customMsgMap[ruleKey]; !ok {
|
||||||
msg = errorMsgMap.Get(ruleKey)
|
msg = errorMsgMap.Get(ruleKey)
|
||||||
} else {
|
} else {
|
||||||
@ -571,7 +570,7 @@ func checkLength(value, ruleKey, ruleVal string, customMsgMap map[string]string)
|
|||||||
// 最大长度
|
// 最大长度
|
||||||
case "max-length":
|
case "max-length":
|
||||||
if max, err := strconv.Atoi(ruleVal); err == nil {
|
if max, err := strconv.Atoi(ruleVal); err == nil {
|
||||||
if len(value) > max {
|
if valueLen > max {
|
||||||
if v, ok := customMsgMap[ruleKey]; !ok {
|
if v, ok := customMsgMap[ruleKey]; !ok {
|
||||||
msg = errorMsgMap.Get(ruleKey)
|
msg = errorMsgMap.Get(ruleKey)
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user