Explorar el Código

基础的http server使用

龚成明 hace 2 años
padre
commit
182acbb5f5
Se han modificado 1 ficheros con 16 adiciones y 0 borrados
  1. 16 0
      chapter01/07/server1.go

+ 16 - 0
chapter01/07/server1.go

@@ -0,0 +1,16 @@
+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, "URL.Path = %q\n", r.URL.Path)
+}