Beego:如何在会话超时时重定向到其他页面

时间:2015-06-03 12:01:09

标签: session go session-cookies session-timeout beego

我通过使用

设置超时来处理会话变量
globalSessions, _ = session.NewManager("memory", `{"cookieName":"gosessionid", "enableSetCookie,omitempty": true, "gclifetime":5, "maxLifetime": 5, "secure": false, "sessionIDHashFunc": "sha1", "sessionIDHashKey": "", "cookieLifeTime": 3600, "providerConfig": ""}`)

go globalSessions.GC()

sess, _ := globalSessions.SessionStart(c.Ctx.ResponseWriter, c.Ctx.Request)

defer sess.SessionRelease(c.Ctx.ResponseWriter)

errU := sess.Set("user1", c.Input().Get("userName"))

if errU != nil {
    fmt.Println("error in settng value")
}

现在如何在当前页面之外的时间内重定向回特定页面。 我在beego有这个应用程序

1 个答案:

答案 0 :(得分:1)

beego有方法Prepare()来执行此操作,see doc

<强>准备()

您可以使用此功能进行扩展,它将在下面的方法之前执行。您可以覆盖它以实现用户验证等功能。

<强>码

type MainController struct {
    beego.Controller
}

func (c *MainController) Prepare() { 
    if timeOut {
        c.Redirect("login.html", 302)
    }
}

func (c *MainController) Index() {
    c.TplNames = "index.tpl"
}