Go -10 Go Web 简单实现
1.在go代码的目录src下新建一个web1的文件夹,接着新建一个main.go的文件键入以下代码: 用到的包:net/http
package main
import( "fmt" "net/http" )
//创建处理函数
func handler(w http.ResponseWriter , r *http.Request) {
fmt.Fprintln(w, "Hello world!", r.URL.Path)
}
func main() {
http.HandleFunc("/", handler)
// 创建路由
// nil 即默认的多路复用器
http.ListenAndServe(":8080", nil)
}
然后 使用 go build main.go
接着运行 main.exe文件
接着打开浏览器 输入 localhost:8080
浏览器会有显示:Hello world! /