在 Go 中创建 HTTP 服务可以通过使用标准库中的 `net/http` 包来实现。以下是一个简单的示例,演示如何创建一个简单的 HTTP 服务:
```go
package main
import (
"fmt"
"log"
"net/http"
)
func main() {
http.HandleFunc("/", handler)
log.Fatal(http.ListenAndServe(":8080", nil))
}
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello, World!")
}
```
在这个示例中,我们首先导入了 `fmt`、`log` 和 `net/http` 包。然后,在 `main` 函数中,我们使用 `http.HandleFunc` 函数将请求路由到名为 `handler` 的函数。这个函数将在用户访问网站时被调用。最后,我们使用 `http.ListenAndServe` 函数来启动 HTTP 服务器。
在 `handler` 函数中,我们使用 `fmt.Fprint` 函数向用户发送一条简单的消息。这个消息将显示在用户访问网站时的页面上。
要运行这个示例,您可以将代码保存在名为 `main.go` 的文件中,然后在终端中使用 `go run main.go` 命令来运行它。然后,您可以在浏览器中访问 `http://localhost:8080` 来查看您的 HTTP 服务。