We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In case the request content type is multipart/form-data i'd like to know the best to read the file/post parameters
if isMultipart(contentType, r) == true { r.ParseMultipartForm(0) // works param.Parse(r.MultipartForm, body) // ideally something like this } else { r.ParseForm() // works param.Parse(r.PostForm, body) //works }
i'm dealing with large POST content, unlike form url encoded - am having trouble reading the data.
Thanks ~B
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In case the request content type is multipart/form-data i'd like to know the best to read the file/post parameters
i'm dealing with large POST content, unlike form url encoded - am having trouble reading the data.
Thanks
~B
The text was updated successfully, but these errors were encountered: