net/http.Request.PostForm (field)
15 uses
net/http (current package)
request.go#L258: PostForm url.Values
request.go#L402: r2.PostForm = cloneURLValues(r.PostForm)
request.go#L1329: if r.PostForm == nil {
request.go#L1331: r.PostForm, err = parsePostForm(r)
request.go#L1333: if r.PostForm == nil {
request.go#L1334: r.PostForm = make(url.Values)
request.go#L1338: if len(r.PostForm) > 0 {
request.go#L1340: copyValues(r.Form, r.PostForm)
request.go#L1394: if r.PostForm == nil {
request.go#L1395: r.PostForm = make(url.Values)
request.go#L1400: r.PostForm[k] = append(r.PostForm[k], v...)
request.go#L1435: if r.PostForm == nil {
request.go#L1438: if vs := r.PostForm[key]; len(vs) > 0 {
![]() |
The pages are generated with Golds v0.8.4. (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. |