6b777f0c by astaxie

Merge pull request #1207 from oiooj/develop

Don't overwrite the params from function  ValidRouter
2 parents d9bb1a35 491238ce
......@@ -612,10 +612,9 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
if l, ok := p.filters[pos]; ok {
for _, filterR := range l {
if ok, p := filterR.ValidRouter(urlPath); ok {
for k, v := range context.Input.Params {
p[k] = v
for k, v := range p {
context.Input.Params[k] = v
}
context.Input.Params = p
filterR.filterFunc(context)
if filterR.returnOnOutput && w.started {
return true
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!