allow ignoring field on form mapping (#1733)

This commit is contained in:
André Bazaglia
2019-02-22 01:23:52 -03:00
committed by 田欧
parent 4e86b17e73
commit 48f6c6137c
2 changed files with 28 additions and 0 deletions

View File

@ -41,6 +41,9 @@ func mapFormByTag(ptr interface{}, form map[string][]string, tag string) error {
defaultValue = defaultList[1]
}
}
if inputFieldName == "-" {
continue
}
if inputFieldName == "" {
inputFieldName = typeField.Name