MCPcopy
hub / github.com/gofiber/fiber / MultipartForm

Method MultipartForm

req.go:840–842  ·  view source on GitHub ↗

MultipartForm parse form entries from binary. This returns a map[string][]string, so given a key, the value will be a string slice.

()

Source from the content-addressed store, hash-verified

838// MultipartForm parse form entries from binary.
839// This returns a map[string][]string, so given a key, the value will be a string slice.
840func (r *DefaultReq) MultipartForm() (*multipart.Form, error) {
841 return r.c.fasthttp.MultipartFormWithLimit(r.c.app.config.BodyLimit)
842}
843
844// OriginalURL contains the original request URL.
845// Returned value is only valid within the handler. Do not store any references.

Callers 2

FormFileMethod · 0.95
FormValueMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected