golang中使用原生的http包編寫一個web服務

在golang中實現一個簡單的web服務很簡單,代碼以下:golang package main import ( "net/http" "fmt" ) func main() { http.HandleFunc("/", hello) http.ListenAndServe(":9090", nil) } func hello(w http.ResponseWriter, r *http.Req
相關文章
相關標籤/搜索