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 中有这个应用程序


慕运维8079593
浏览 288回答 1
1回答

慕尼黑5688855

beego 有方法Prepare()可以做到这一点,请参阅文档准备()您可以使用此函数进行扩展,它将在以下方法之前执行。您可以覆盖它来实现用户验证等功能。代码type MainController struct {    beego.Controller}func (c *MainController) Prepare() {     if timeOut {        c.Redirect("login.html", 302)    }}func (c *MainController) Index() {    c.TplNames = "index.tpl"}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go