go语言可以很简单的搭建起一个web服务,重要的只需要仅仅几行,代码如下:
package main
import (
"fmt"
"log"
"net/http"
)
func main() {
http.HandleFunc("/", HelloWeb)
err := http.ListenAndServe(":9090", nil)
if err != nil {
log.Fatal("error:", err)
}
}
func HelloWeb(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
fmt.Fprintf(w, "hello world!!")
}
时间: 2024-10-24 01:14:44