Documentation
¶
Index ¶
- Variables
- func Bind(c fiber.Ctx, obj interface{}) error
- func BindBody(r fiber.Ctx, obj interface{}) error
- func BindQuery(c fiber.Ctx, obj interface{}) error
- func BindUri(c fiber.Ctx, obj interface{}) error
- func MustBindWith(c fiber.Ctx, obj interface{}, b Binding) error
- func NewReq[REQ any](c fiber.Ctx) (*REQ, error)
- func RegisterBodyBinding(name string, unmarshaller func(data []byte, obj any) error)
- func SetTag(tag string)
- func ShouldBind(c fiber.Ctx, obj interface{}) error
- func ShouldBindBody(c fiber.Ctx, obj interface{}) error
- func ShouldBindQuery(c fiber.Ctx, obj interface{}) error
- func ShouldBindUri(c fiber.Ctx, obj interface{}) error
- func ShouldBindWith(c fiber.Ctx, obj interface{}, b Binding) error
- type Binding
- type BindingBody
- type QuerySource
Constants ¶
This section is empty.
Variables ¶
var ( CustomBody = bodyBinding{/* contains filtered or unexported fields */} Query = queryBinding{} FormPost = formPostBinding{} FormMultipart = formMultipartBinding{} Uri = uriBinding{} Header = headerBinding{} )
Functions ¶
func BindUri ¶
MustBindWith binds the passed struct pointer using the specified binding engine. BindUri binds the passed struct pointer using binding.Uri. It will abort the request with HTTP 400 if any error occurs.
func MustBindWith ¶
MustBindWith binds the passed struct pointer using the specified binding engine. It will abort the request with HTTP 400 if any error occurs. See the binding package.
func RegisterBodyBinding ¶
func ShouldBind ¶
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. It decodes the json payload into the struct specified as a pointer. Like c.GinBind() but this method does not set the response status code to 400 and abort if the json is not valid.
func ShouldBindBody ¶
func ShouldBindQuery ¶
ShouldBindQuery is a shortcut for c.ShouldBindWith(obj, binding.Query).
func ShouldBindUri ¶
ShouldBindUri binds the passed struct pointer using the specified binding engine.