美文网首页
17. Go极简教程 Web服务器

17. Go极简教程 Web服务器

作者: 超级大柱子 | 来源:发表于2018-06-03 11:49 被阅读56次

    使用http启动一个服务

    package main
    
    import (
        "io"
        "log"
        "net/http"
    )
    
    func hello(w http.ResponseWriter, r *http.Request) {
        io.WriteString(w, "hello world")
    }
    
    func main() {
        http.HandleFunc("/", hello)
        log.Println("listen: http://localhost:8000/")
        http.ListenAndServe(":8000", nil)
    }
    
    

    访问 http://localhost:7000 可以看到来自程序的问候

    实际工作中,我们会使用Iris或者beego编写一个Web服务

    参考资料:
    http://go-tour-zh.appspot.com/
    https://studygolang.com/articles/7854

    Go极简教程 继续阅读( 目录)

    相关文章

      网友评论

          本文标题:17. Go极简教程 Web服务器

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