net/http.Request.PostForm (field)
15 uses
net/http (current package)
request.go#L257: PostForm url.Values
request.go#L405: r2.PostForm = cloneURLValues(r.PostForm)
request.go#L1338: if r.PostForm == nil {
request.go#L1340: r.PostForm, err = parsePostForm(r)
request.go#L1342: if r.PostForm == nil {
request.go#L1343: r.PostForm = make(url.Values)
request.go#L1347: if len(r.PostForm) > 0 {
request.go#L1349: copyValues(r.Form, r.PostForm)
request.go#L1403: if r.PostForm == nil {
request.go#L1404: r.PostForm = make(url.Values)
request.go#L1409: r.PostForm[k] = append(r.PostForm[k], v...)
request.go#L1444: if r.PostForm == nil {
request.go#L1447: if vs := r.PostForm[key]; len(vs) > 0 {
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |