在Web开发中HTTP包必不可少的。Golang中可使用net/http充当生产级HTTP客户端和服务器。
import (
"net/http"
"fmt"
"log"
)
func sayhelloGolang(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
fmt.Println("path", r.URL.Path)
w.Write([]byte("Hello Chongchong!"))
}
func main() {
http.HandleFunc("/",hello)
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
它可以让我们非常轻松地进行Web开发。Rust标准库没有开箱即用的HTTP功能,但是Web的框架也非常丰富。