Golang 写一个简单的网页应用
以下是一个简单的Go语言使用net/http
包创建的网页应用的例子。这个应用会监听本地的8080端口,并在浏览器访问http://localhost:8080
时返回一个简单的HTML页面。
package main
import (
"fmt"
"net/http"
)
func helloHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, World!")
}
func main() {
http.HandleFunc("/", helloHandler)
fmt.Println("Server starting on port :8080...")
err := http.ListenAndServe(":8080", nil)
if err != nil {
fmt.Println("ListenAndServe: ", err)
}
}
要运行这个应用,请将以上代码保存为main.go
,并使用go run main.go
命令启动服务。之后,打开浏览器并访问http://localhost:8080
,你将看到输出Hello, World!
。
评论已关闭