fix bugs of ParseForm about time in RFC3339 format

This commit is contained in:
oberontang 2019-05-31 15:47:21 +08:00
parent 206a7ed1fc
commit 649c5c861d
1 changed files with 2 additions and 0 deletions

View File

@ -361,6 +361,8 @@ func parseFormToStruct(form url.Values, objT reflect.Type, objV reflect.Value) e
if len(value) >= 25 {
value = value[:25]
t, err = time.ParseInLocation(time.RFC3339, value, time.Local)
} else if strings.HasSuffix(strings.ToUpper(value), "Z") {
t, err = time.ParseInLocation(time.RFC3339, value, time.Local)
} else if len(value) >= 19 {
if strings.Contains(value, "T") {
value = value[:19]