Den enda andra lösningen jag har sett, till exempel i "Överföra sammanhang till gränssnittsmetoder" är:
skapa en
struct
som accepterar ett inbäddat sammanhang och vårhandler
typ, och vi uppfyller fortfarandehttp.Handler
gränssnitt tack vareServeHTTP
.
I ditt fall, struct
skulle inkludera pool
, och handler
funktion.
type appContext struct {
pool Pool
}
type appHandler struct {
*appContext
h func(a *appContext, w http.ResponseWriter, r *http.Request) (int, error)
}
func (ah appHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
...
}
func main() {
context := &appContext{
pool: ...,
// any other data
}
}