mirror of
https://github.com/astaxie/beego.git
synced 2024-11-01 00:30:54 +00:00
Send the request from context rather than the original one to handlers
The filters may do some changes to the request, such as putting values in the request's context Signed-off-by: Wenkai Yin <yinw@vmware.com>
This commit is contained in:
parent
793047097c
commit
5a02c556b2
@ -773,7 +773,7 @@ func (p *ControllerRegister) ServeHTTP(rw http.ResponseWriter, r *http.Request)
|
||||
}
|
||||
} else if routerInfo.routerType == routerTypeHandler {
|
||||
isRunnable = true
|
||||
routerInfo.handler.ServeHTTP(rw, r)
|
||||
routerInfo.handler.ServeHTTP(context.ResponseWriter, context.Request)
|
||||
} else {
|
||||
runRouter = routerInfo.controllerType
|
||||
methodParams = routerInfo.methodParams
|
||||
|
Loading…
Reference in New Issue
Block a user