Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Update modelHelper.go

Cette révision appartient à :
akuma06 2017-05-06 18:55:33 +02:00 révisé par GitHub
Parent acaa68eb66
révision 52721f951c

Voir le fichier

@ -34,7 +34,7 @@ func BindValueForm(form interface{}, r *http.Request) {
for i := 0; i < formElem.NumField(); i++ {
typeField := formElem.Type().Field(i)
tag := typeField.Tag
switch typeField.Type.Name() :
switch typeField.Type.Name() {
case "string" :
formElem.Field(i).SetString(r.PostFormValue(tag.Get("form")))
case "int" :
@ -43,5 +43,6 @@ func BindValueForm(form interface{}, r *http.Request) {
case "float" :
nbr, _ := strconv.Atoi(r.PostFormValue(tag.Get("form")))
formElem.Field(i).SetFloat(float64(nbr))
}
}
}
}