欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-11-15 12:48:13
本文实例讲述了go语言简单的处理http请求的函数。分享给大家供大家参考。具体实现方法如下: 复制代码 代码如下: func somehandler(w http.re...

本文实例讲述了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语言程序设计有所帮助。