本文整理匯總了Golang中http.ServeMux.Handle方法的典型用法代碼示例。如果您正苦於以下問題:Golang ServeMux.Handle方法的具體用法?Golang ServeMux.Handle怎麽用?Golang ServeMux.Handle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類http.ServeMux
的用法示例。
在下文中一共展示了ServeMux.Handle方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: registerPublicHandlers
func registerPublicHandlers(mux *http.ServeMux) {
mux.Handle(cmdHandler.pattern, &cmdHandler)
mux.Handle(pkgHandler.pattern, &pkgHandler)
mux.HandleFunc("/doc/codewalk/", codewalk)
mux.HandleFunc("/search", search)
mux.Handle("/robots.txt", fileServer)
mux.HandleFunc("/", serveFile)
}
示例2: Run
func (s *Server) Run(addr string, mux *http.ServeMux) {
s.initServer()
mux.Handle("/", s)
s.Logger.Printf("web.go serving %s\n", addr)
err := http.ListenAndServe(addr, mux)
if err != nil {
log.Exit("ListenAndServe:", err)
}
}
示例3: Attach
func (self *AnonymousPageServer) Attach(s *http.ServeMux) {
s.Handle(self.prefix, http.HandlerFunc(func(c *http.Conn, r *http.Request) {
_, name := path.Split(r.URL.Path)
id, err := strconv.Atoi64(name)
if err != nil {
c.WriteHeader(http.StatusBadRequest)
io.WriteString(c, "invalid page id")
} else {
self.getPage(id).ServeHTTP(c, r)
}
}))
}
示例4: registerPublicHandlers
func registerPublicHandlers(mux *http.ServeMux) {
mux.Handle(cmdHandler.pattern, &cmdHandler)
mux.Handle(pkgHandler.pattern, &pkgHandler)
mux.Handle("/search", http.HandlerFunc(search))
mux.Handle("/", http.HandlerFunc(serveFile))
}