mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 13:30:56 +00:00
controller data inherit the context's data
This commit is contained in:
parent
17dd72241b
commit
c4250872ca
@ -76,6 +76,9 @@ func (c *Controller) Init(ctx *context.Context, controllerName, actionName strin
|
|||||||
c.TplExt = "tpl"
|
c.TplExt = "tpl"
|
||||||
c.AppController = app
|
c.AppController = app
|
||||||
c.EnableReander = true
|
c.EnableReander = true
|
||||||
|
for k, v := range ctx.Input.Data {
|
||||||
|
c.Data[k] = v
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepare runs after Init before request function execution.
|
// Prepare runs after Init before request function execution.
|
||||||
|
Loading…
Reference in New Issue
Block a user