You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
698 B
32 lines
698 B
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/", handler)
|
|
log.Fatal(http.ListenAndServe("localhost:8000", nil))
|
|
}
|
|
func handler(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Fprintf(w, "%s %s %s\n", r.Method, r.URL, r.Proto)
|
|
for k, v := range r.Header {
|
|
fmt.Fprintf(w, "Header[%q] = %q\n", k, v)
|
|
}
|
|
fmt.Fprintf(w, "Host = %q\n", r.Host)
|
|
fmt.Fprintf(w, "RemoteAddr = %q\n", r.RemoteAddr)
|
|
if err := r.ParseForm(); err != nil {
|
|
log.Print(err)
|
|
}
|
|
r.ParseForm()/*
|
|
http://localhost:8000/?q=query,
|
|
此时,得到的map中的key,value就是q,query。
|
|
*/
|
|
fmt.Println(r.Form)
|
|
for k, v := range r.Form {
|
|
fmt.Fprintf(w, "Form[%q] = %q\n", k, v)
|
|
}
|
|
|
|
}
|