美文网首页
第15章 15.2-http服务器

第15章 15.2-http服务器

作者: yezide | 来源:发表于2020-01-25 13:50 被阅读0次
package main

import "fmt"
import "net/http"

func HttpHelloGo(w http.ResponseWriter, req *http.Request) {
    fmt.Fprintf(w, "Hello,"+req.URL.Path[1:])
}

func main() {
    fmt.Println("开始启动http服务器")
    http.HandleFunc("/hellogo", HttpHelloGo)
    http.ListenAndServe(":8081", nil)
}

相关文章

网友评论

      本文标题:第15章 15.2-http服务器

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