Go语言_Web_第一个Web程序


Go语言中的WEB服务:

 Go语言标准库中的 net/http 包,主要用于提供Web服务,响应并处理客户端(浏览器)的HTTP请求



示例代码:

package main
import (
"io"
"log"
"net/http"
)
func helloHandler(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, "Hello, world!")
}
func main() {
http.HandleFunc("/hello", helloHandler)
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServe: ", err.Error())
}
}

http.ListenAndServe(),该方法用于在示例中监听 8080 端口,接受并调用内部程序来处理连接到此端口的请求

http.HandleFunc(),该方法用于分发请求,即针对某一路径请求将其映射到指定的业务逻辑处理方法中


访问http://localhost:8080/hello ,程序就会去调用helloHandler()方法中的业务逻辑程序。


测试截图:

Go语言_Web_第一个Web程序_第1张图片


你可能感兴趣的:(Go语言_Golang,Web)