这让我在学习 Go 的最后一个月感到困惑:func Auth(next http.HandlerFunc) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { // hmmmm // ... next.ServeHTTP(w, r) }}在这里我们可以看到 Auth func 返回 type http.HandlerFunc。那个类型只是一个函数。那么当您调用时next.ServeHTTP,该方法是在何时/何处定义的?
1 回答
慕虎7371278
TA贡献1802条经验 获得超4个赞
// The HandlerFunc type is an adapter to allow the use of
// ordinary functions as HTTP handlers. If f is a function
// with the appropriate signature, HandlerFunc(f) is a
// Handler that calls f.
type HandlerFunc func(ResponseWriter, *Request)
// ServeHTTP calls f(w, r).
func (f HandlerFunc) ServeHTTP(w ResponseWriter, r *Request) {
f(w, r)
}
从字面上看,任何具有签名的函数都func(ResponseWriter, *Request)可以转换为 a HandlerFunc,这为它提供了方法ServeHTTP——然后简单地调用该函数。
- 1 回答
- 0 关注
- 111 浏览
添加回答
举报
0/150
提交
取消