Binding middleware for tango
|
||
---|---|---|
.gitea/workflows | ||
bind_test.go | ||
binding.go | ||
common_test.go | ||
errorhandler_test.go | ||
errors_test.go | ||
errors.go | ||
file_test.go | ||
form_test.go | ||
form.go | ||
go.mod | ||
go.sum | ||
json_test.go | ||
json.go | ||
LICENSE | ||
misc_test.go | ||
multipart_test.go | ||
README.md | ||
validate_test.go | ||
validate.go |
binding
Middlware binding provides request data binding and validation for Tango.
Installation
go get gitea.com/tango/binding
Example
import (
"gitea.com/lunny/tango"
"gitea.com/tango/binding"
)
type Action struct {
binding.Binder
}
type MyStruct struct {
Id int64
Name string
}
func (a *Action) Get() string {
var mystruct MyStruct
errs := a.Bind(&mystruct)
return fmt.Sprintf("%v, %v", mystruct, errs)
}
func main() {
t := tango.Classic()
t.Use(binding.Bind())
t.Get("/", new(Action))
t.Run()
}
Visit /?id=1&name=2
on your browser and you will find output
{1 sss}, []
Getting Help
Credits
This package is forked from macaron-contrib/binding with modifications.
License
This project is under Apache v2 License. See the LICENSE file for the full license text.