首页 > 编程 > Golang > 正文

go语言简单的处理http请求的函数实例

2020-04-01 19:16:12
字体:
来源:转载
供稿:网友
这篇文章主要介绍了go语言简单的处理http请求的函数,实例分析了Go语言处理http请求的技巧,需要的朋友可以参考下
 

本文实例讲述了go语言简单的处理http请求的函数。分享给大家供大家参考。具体实现方法如下:

 

复制代码代码如下:

func someHandler(w http.ResponseWriter, r *http.Request) {
    // read form value
    value := r.FormValue("value")
    if r.Method == "POST" {
        // receive posted data
        body, err := ioutil.ReadAll(r.Body)
}
func main() {
    http.HandleFunc("/", someHandler)
    http.ListenAndServe(":8080", nil)
}

 

希望本文所述对大家的Go语言程序设计有所帮助。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表