Golang http 服务器

Posted 學海無涯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Golang http 服务器相关的知识,希望对你有一定的参考价值。

package main

import (
    "net/http"
    "fmt"
)

func main() {
    app := http.NewServeMux()
    app.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
        fmt.Fprintln(w,fmt.Sprint("Method:",r.Method))
        fmt.Fprintln(w,"Hello World")
    })
    http.ListenAndServe("127.0.0.1:8080", app)
}

以上是关于Golang http 服务器的主要内容,如果未能解决你的问题,请参考以下文章

golang goroutine例子[golang并发代码片段]

代码片段 - Golang 实现集合操作

求教golang中http发送post请求gb2312编码的解决方案

json [Golang] golang #golang #snippets中有用的片段

java golang oop 2文章片段

golang 去练习片段