1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-23 17:10:19 +00:00

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

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]