update
This commit is contained in:
parent
addbd6327a
commit
4e652c64b7
37
run.go
37
run.go
@ -114,20 +114,13 @@ func getDataStatus(val gjson.Result, dataType string) string {
|
||||
return ""
|
||||
}
|
||||
|
||||
// validate 验证字段
|
||||
// formatInputVal ...
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 14:32 2024/4/29
|
||||
func validate(sourceData []byte, val gjson.Result, rule *define.FieldRule) (any, error) {
|
||||
// Date : 18:02 2024/5/2
|
||||
func formatInputVal(val gjson.Result, rule *define.FieldRule) (any, error) {
|
||||
inputVal := val.Value()
|
||||
if !val.Exists() {
|
||||
if rule.IsRequired {
|
||||
return nil, fmt.Errorf("%v : field is required, but not found", rule.Path)
|
||||
}
|
||||
// TODO : 验证有条件必传
|
||||
inputVal = rule.DefaultValue
|
||||
} else {
|
||||
if nil == inputVal {
|
||||
if rule.IsRequired {
|
||||
return nil, fmt.Errorf("%v : data is required, but get nil", rule.Path)
|
||||
@ -144,8 +137,30 @@ func validate(sourceData []byte, val gjson.Result, rule *define.FieldRule) (any,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return inputVal, nil
|
||||
}
|
||||
|
||||
// validate 验证字段
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 14:32 2024/4/29
|
||||
func validate(sourceData []byte, val gjson.Result, rule *define.FieldRule) (any, error) {
|
||||
var (
|
||||
err error
|
||||
inputVal any
|
||||
)
|
||||
if !val.Exists() {
|
||||
if rule.IsRequired {
|
||||
return nil, fmt.Errorf("%v : field is required, but not found", rule.Path)
|
||||
}
|
||||
// TODO : 验证有条件必传
|
||||
inputVal = rule.DefaultValue
|
||||
} else {
|
||||
if inputVal, err = formatInputVal(val, rule); nil != err {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
return handleData(inputVal, rule)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user