Go 开发环境配置,web开发基础,不吃透都对不起自己
package main
import (
"fmt"
"log"
"net/http"
)
func helloHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, World!")
}
func main() {
http.HandleFunc("/hello", helloHandler)
fmt.Println("Starting server on :8080")
log.Fatal(http.ListenAndServe(":8080", nil))
}
这段代码演示了如何在Go中设置一个简单的Web服务器,它定义了一个路由/hello
,当访问这个路由时,会调用helloHandler
函数,返回“Hello, World!”消息。这是学习Web开发的基础。
评论已关闭