为了账号安全,请及时绑定邮箱和手机立即绑定

ServeHTTP方法从哪里来

ServeHTTP方法从哪里来

Go
慕斯709654 2023-05-22 15:47:37
这让我在学习 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——然后简单地调用该函数。


查看完整回答
反对 回复 2023-05-22
  • 1 回答
  • 0 关注
  • 111 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信