Closed
Description
req.ParseForm()
is needed to be called before accessing the form parameters using param := req.Form.Get("param-name")
where req is a http.Request
Is there a reason behind this?
I would like to add a feature to ParseForm automatically from Form.Get() on first execution and on next calls, check if Form is already parsed and work as usual.
What are your thoughts?