美文网首页
本地请求

本地请求

作者: 后来我经过梵高的葵花田 | 来源:发表于2016-09-13 14:46 被阅读0次

    运行下面代码.
    在浏览器中访问:http://localhost:4000/ 可以看到hello输出

    //定义类型
    type Hello struct{}

    //复写 http请求和相应接口
    func (h Hello) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    fmt.Fprint(w, "Hello!")
    }

    func main() {
    //声明变量
    var h Hello
    //创建请求
    err := http.ListenAndServe("localhost:4000", h)
    if err != nil {
    log.Fatal(err)
    }
    }

    相关文章

      网友评论

          本文标题:本地请求

          本文链接:https://www.haomeiwen.com/subject/jmmmettx.html