1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-23 08:40:18 +00:00

Merge pull request #3627 from haleyly/develop

route request put amendment
This commit is contained in:
astaxie
2019-04-29 18:18:19 +08:00
committed by GitHub

View File

@ -778,7 +778,7 @@ func (p *ControllerRegister) ServeHTTP(rw http.ResponseWriter, r *http.Request)
runRouter = routerInfo.controllerType
methodParams = routerInfo.methodParams
method := r.Method
if r.Method == http.MethodPost && context.Input.Query("_method") == http.MethodPost {
if r.Method == http.MethodPost && context.Input.Query("_method") == http.MethodPut {
method = http.MethodPut
}
if r.Method == http.MethodPost && context.Input.Query("_method") == http.MethodDelete {