1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 12:31:58 +00:00

create a gopkg.toml manually in order to resolve https://github.com/kataras/iris/issues/731

Former-commit-id: c9ad41b73ff0338429fe69cd083a1daf684c8e40
This commit is contained in:
kataras
2017-08-29 13:13:52 +03:00
parent b6ce8ecdad
commit f5d62a6a18
2 changed files with 94 additions and 3 deletions

View File

@@ -23,9 +23,9 @@ import (
"time"
"github.com/fatih/structs"
"github.com/iris-contrib/form-binder"
"github.com/json-iterator/go"
"github.com/microcosm-cc/bluemonday"
"github.com/monoculum/formam"
"github.com/russross/blackfriday"
"github.com/kataras/iris/core/errors"
@@ -1450,10 +1450,10 @@ func (ctx *context) ReadForm(formObject interface{}) error {
return errors.New("An empty form passed on ReadForm")
}
// or dec := formam.NewDecoder(&formam.DecoderOptions{TagName: "form"})
// or dec := formbinder.NewDecoder(&formbinder.DecoderOptions{TagName: "form"})
// somewhere at the app level. I did change the tagName to "form"
// inside its source code, so it's not needed for now.
return errReadBody.With(formam.Decode(values, formObject))
return errReadBody.With(formbinder.Decode(values, formObject))
}
// +------------------------------------------------------------+