Fix time.Time binding (#904)

If a empty string is given(`""`), them time should be zero.
This commit is contained in:
Andrey Nering 2017-05-03 22:22:00 -03:00 committed by Bo-Yi Wu
parent 957f6205c8
commit 6a3a8ae61b
1 changed files with 5 additions and 0 deletions

View File

@ -152,6 +152,11 @@ func setTimeField(val string, structField reflect.StructField, value reflect.Val
if timeFormat == "" {
return errors.New("Blank time format")
}
if val == "" {
value.Set(reflect.ValueOf(time.Time{}))
return nil
}
l := time.Local
if isUTC, _ := strconv.ParseBool(structField.Tag.Get("time_utc")); isUTC {