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.Method))
fmt.Fprintln(w,"Hello World")
})
http.ListenAndServe("127.0.0.1:8080", app)
}
Golang http 服务器
Posted 學海無涯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Golang http 服务器相关的知识,希望对你有一定的参考价值。
以上是关于Golang http 服务器的主要内容,如果未能解决你的问题,请参考以下文章
golang goroutine例子[golang并发代码片段]
求教golang中http发送post请求gb2312编码的解决方案