初级会员
  • 第 13666 位会员
  • whsyy
  • 2017-10-26 02:40:58
  • Offline
  • 20 43

最近发布的主题

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了主题 go http请求会阻塞
    怎么找不到结贴,不须要结贴吗?
  • 评论了主题 go http请求会阻塞
    #1 @channel 这个问题已经解决了,感谢你的关注。
  • 评论了主题 go http请求会阻塞
    #3 @tk103331 对,跟这个一模一样,解决了,非常感谢。
  • 评论了主题 go http请求会阻塞
    ```go package main import ( "fmt" "net/http" ) func main() { var handleMap = map[string]func(http.ResponseWriter, *http.Request){} handleMap["/"] = index handleMap["/welcome"] = welcome for k, v := range handleMap { http.HandleFunc(k, v) } fmt.Println("http server Running on:", 9001) err := http.ListenAndServe(":9001", nil) if err != nil { panic(err) } } func index(w http.ResponseWriter, r *http.Request) { fmt.Println("index") } func welcome(w http.ResponseWriter, r *http.Request) { fmt.Println("welcome") } ``` 这个是源代码