net/http.Request.Form (field)
14 uses
net/http (current package)
request.go#L253: Form url.Values
request.go#L396: r2.Form = cloneURLValues(r.Form)
request.go#L1291: if r.Form == nil {
request.go#L1293: r.Form = make(url.Values)
request.go#L1294: copyValues(r.Form, r.PostForm)
request.go#L1307: if r.Form == nil {
request.go#L1308: r.Form = newValues
request.go#L1310: copyValues(r.Form, newValues)
request.go#L1329: if r.Form == nil {
request.go#L1352: r.Form[k] = append(r.Form[k], v...)
request.go#L1370: if r.Form == nil {
request.go#L1373: if vs := r.Form[key]; len(vs) > 0 {
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |