MultipartForm parse form entries from binary. This returns a map[string][]string, so given a key, the value will be a string slice.
()
| 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. |
| 840 | func (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. |