# Functions
No description provided by the author
No description provided by the author
BindQuery is a shortcut for c.MustBindWith(obj, binding.Query).
No description provided by the author
Default returns the appropriate Binding instance based on the HTTP method and the content type.
MustBindWith binds the passed struct pointer using the specified binding engine.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ShouldBind checks the Content-Type to select a binding engine automatically, Depending the "Content-Type" header different bindings are used:
"application/json" --> JSON binding "application/xml" --> XML binding
otherwise --> returns an error It parses the request's body as JSON if Content-Type == "application/json" using JSON or XML as a JSON input.
No description provided by the author
ShouldBindBodyWith is similar with ShouldBindWith, but it stores the request body into the context, and reuse when it is called again.
ShouldBindQuery is a shortcut for c.ShouldBindWith(obj, binding.Query).
ShouldBindUri binds the passed struct pointer using the specified binding engine.
ShouldBindWith binds the passed struct pointer using the specified binding engine.
No description provided by the author
# Constants
No description provided by the author
No description provided by the author
# Variables
These implement the Binding interface and can be used to bind the data present in the request to struct instances.
These implement the Binding interface and can be used to bind the data present in the request to struct instances.
These implement the Binding interface and can be used to bind the data present in the request to struct instances.
These implement the Binding interface and can be used to bind the data present in the request to struct instances.
These implement the Binding interface and can be used to bind the data present in the request to struct instances.
These implement the Binding interface and can be used to bind the data present in the request to struct instances.
# Interfaces
Binding describes the interface which needs to be implemented for binding the data present in the request such as JSON request body, query parameters or the form POST.
BindingBody adds BindBody method to Binding.