我正在通过使用设置超时来处理会话变量
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有这个应用程序