1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-19 15:20:40 +00:00

Merge pull request from ywk253100/200110_context

Send the request from context rather than the original one to handlers
This commit is contained in:
astaxie
2020-02-07 11:05:01 +08:00
committed by GitHub

@ -773,7 +773,7 @@ func (p *ControllerRegister) ServeHTTP(rw http.ResponseWriter, r *http.Request)
} }
} else if routerInfo.routerType == routerTypeHandler { } else if routerInfo.routerType == routerTypeHandler {
isRunnable = true isRunnable = true
routerInfo.handler.ServeHTTP(rw, r) routerInfo.handler.ServeHTTP(context.ResponseWriter, context.Request)
} else { } else {
runRouter = routerInfo.controllerType runRouter = routerInfo.controllerType
methodParams = routerInfo.methodParams methodParams = routerInfo.methodParams