http请求为什么每次都会访问一次"/"这里的函数处理啊
![image.png](https://static.studygolang.com/191216/9aa25ae221c7e7210f7ce9b6a28ca9e0.png)
别用浏览器测试,会产生额外的请求,比如/favicon.ico(由于你没设定这个pattern所以会匹配到'/'), 打开网络控制台就看得到。
// Note that since a pattern ending in a slash names a rooted subtree,
// the pattern "/" matches all paths not matched by other registered
// patterns, not just the URL with Path == "/".
可以用curl或postman之类代替。
#1
更多评论