GO语言"net/http"包中"HandleFunc"函数的用法及代码示例。
用法:
func HandleFunc(pattern string, handler func(ResponseWriter, *Request))
HandleFunc 在DefaultServeMux 中为给定模式注册处理函数ServeMux 的文档解释了模式是如何匹配的。
例子:
package main
import (
"io"
"log"
"net/http"
)
func main() {
h1 := func(w http.ResponseWriter, _ *http.Request) {
io.WriteString(w, "Hello from a HandleFunc #1!\n")
}
h2 := func(w http.ResponseWriter, _ *http.Request) {
io.WriteString(w, "Hello from a HandleFunc #2!\n")
}
http.HandleFunc("/", h1)
http.HandleFunc("/endpoint", h2)
log.Fatal(http.ListenAndServe(":8080", nil))
}
相关用法
- GO Handle用法及代码示例
- GO HasPrefix用法及代码示例
- GO HasSuffix用法及代码示例
- GO Hijacker用法及代码示例
- GO HTMLEscape用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO NewFromFiles用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Time.Sub用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO Encode用法及代码示例
- GO ResponseRecorder用法及代码示例
- GO Value用法及代码示例
- GO StreamWriter用法及代码示例
- GO Fscanln用法及代码示例
- GO Values.Get用法及代码示例
- GO NumError用法及代码示例
- GO TrailingZeros8用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 HandleFunc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。