Merge pull request #3621 from guanle/guanle-patch-1

Update templatefunc.go  for default value tag
This commit is contained in:
astaxie 2019-04-27 23:28:35 +08:00 committed by GitHub
commit 6123c72752
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -300,7 +300,12 @@ func parseFormToStruct(form url.Values, objT reflect.Type, objV reflect.Value) e
formValues := form[tag]
var value string
if len(formValues) == 0 {
continue
defaultValue := fieldT.Tag.Get("default")
if defaultValue != "" {
value = defaultValue
} else {
continue
}
}
if len(formValues) == 1 {
value = formValues[0]