Access to name/value pairs in POST/PUT form data from the body. This will attempt to access form data supplied in the HTTP request's body. If the MIME type is not correct or if there is no POST data, no data will be made available. Parsing is lazy: No form data is parsed until it is requested.
| 56 | // |
| 57 | // Parsing is lazy: No form data is parsed until it is requested. |
| 58 | type FormValuesDatasource struct { |
| 59 | req *http.Request |
| 60 | } |
| 61 | |
| 62 | func (f *FormValuesDatasource) Init(req *http.Request) *FormValuesDatasource { |
| 63 | f.req = req |
nothing calls this directly
no outgoing calls
no test coverage detected