用go写一个简单的访问端接口
以下是一个简单的访问端接口的示例代码:
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", helloHandler)
http.ListenAndServe(":8080", nil)
}
func helloHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, World!")
}
该示例代码创建了一个名为 helloHandler 的处理函数,用于处理来自客户端的请求。在这个处理函数中,我们通过调用 fmt.Fprintf 方法将 “Hello, World!” 的字符串写入到 http.ResponseWriter 对象中,最终返回给客户端。
接下来,我们使用 http.HandleFunc 方法将 helloHandler 函数注册到默认的 HTTP 服务器中,监听端口号为 8080。最后,我们调用 http.ListenAndServe 方法来启动 HTTP 服务器并开始监听来自客户端的请求。
这样,我们就创建了一个简单的访问端接口,可以通过访问 http://localhost:8080/ 来获取 “Hello, World!” 的字符串。
原文地址: https://www.cveoy.top/t/topic/bdSC 著作权归作者所有。请勿转载和采集!