net/http.Request.PostForm (field)
15 uses
net/http (current package)
request.go#L251: PostForm url.Values
request.go#L391: r2.PostForm = cloneURLValues(r.PostForm)
request.go#L1253: if r.PostForm == nil {
request.go#L1255: r.PostForm, err = parsePostForm(r)
request.go#L1257: if r.PostForm == nil {
request.go#L1258: r.PostForm = make(url.Values)
request.go#L1262: if len(r.PostForm) > 0 {
request.go#L1264: copyValues(r.Form, r.PostForm)
request.go#L1316: if r.PostForm == nil {
request.go#L1317: r.PostForm = make(url.Values)
request.go#L1322: r.PostForm[k] = append(r.PostForm[k], v...)
request.go#L1353: if r.PostForm == nil {
request.go#L1356: if vs := r.PostForm[key]; len(vs) > 0 {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |