Golang自带的http包的路由规则问题

Posted 比尼玛还爱你

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Golang自带的http包的路由规则问题相关的知识,希望对你有一定的参考价值。

1、调用下面的方法开启一个http监听服务
http.HandleFunc("/hello/", helloHandler)
err := http.ListenAndServe(":8080", nil)
if err= nil {
log.Fatal("ListenAndServe: ", err.Error())
}
2、路由规则中新增了"/hello"和"/hello/"两个key对应的handler(helloHandler)
3、跟踪http\server.go源码查看到路由匹配规则中,通过高亮的代码可以让我们分析出来,
假如我们请求路由"/hello/beijing",那么"/hello/"会被匹配到,但是这个通常不是我们想要的,
如果使用原生的http包路由规则为了避免这种情况,在注册路由的时候不要以"/"结尾,即注册"/hello"而不是"/hello/"

func pathMatch(pattern, path string) bool {
if len(pattern) == 0 {
// should not happen
return false
}
n := len(pattern)
if pattern[n-1] != ‘/‘ {
return pattern == path
}
return len(path) >= n && path[0:n] == pattern
}
 

以上是关于Golang自带的http包的路由规则问题的主要内容,如果未能解决你的问题,请参考以下文章

在 Golang 中测试 HTTP 路由

iptables NAT规则

出了网关,网络数据包的经历

小白学标准库之 mux

golang prometheus包的使用

『GoLang』包