Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Update modelHelper.go

Cette révision appartient à :
akuma06 2017-05-06 18:58:48 +02:00 révisé par GitHub
Parent 9f961cdffa
révision 7b59943bd6

Voir le fichier

@ -39,7 +39,7 @@ func BindValueForm(form interface{}, r *http.Request) {
formElem.Field(i).SetString(r.PostFormValue(tag.Get("form")))
case "int" :
nbr, _ := strconv.Atoi(r.PostFormValue(tag.Get("form")))
formElem.Field(i).SetInt(nbr)
formElem.Field(i).SetInt(int64(nbr))
case "float" :
nbr, _ := strconv.Atoi(r.PostFormValue(tag.Get("form")))
formElem.Field(i).SetFloat(float64(nbr))