1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-14 03:13:33 +00:00

Merge pull request #1157 from ziyel/master

Let filter function get more params info from ctx.Input.Params
This commit is contained in:
astaxie 2015-06-11 14:38:19 +08:00
commit 4d70b22f96

View File

@ -612,6 +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
}
context.Input.Params = p
filterR.filterFunc(context)
if filterR.returnOnOutput && w.started {