摘要: ```go package main import ( "net/http" "fmt" ) func main() { app := http.NewServeMux() app.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w,fmt.Sprint("Method:",r.... 阅读全文
posted @ 2018-02-19 18:33 學海無涯 阅读(161) 评论(0) 推荐(0) 编辑