当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO ServeMux.Handle用法及代码示例


GO语言"net/http"包中"ServeMux.Handle"类型的用法及代码示例。

用法:

func(mux *ServeMux) Handle(pattern string, handler Handler)

Handle 为给定模式注册处理程序。如果模式的处理程序已经存在,Handle 会发生Panics。

例子:

package main

import (
	"fmt"
	"net/http"
)

type apiHandler struct{}

func (apiHandler) ServeHTTP(http.ResponseWriter, *http.Request) {}

func main() {
	mux := http.NewServeMux()
	mux.Handle("/api/", apiHandler{})
	mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
		// The "/" pattern matches everything, so we need to check
		// that we're at the root here.
		if req.URL.Path != "/" {
			http.NotFound(w, req)
			return
		}
		fmt.Fprintf(w, "Welcome to the home page!")
	})
}

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 ServeMux.Handle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。