beego框架 之 session简单使用
2017-04-05 本文已影响0人
大植先生
注意:这种方式依赖 Controller
func (this *LoginController) Get() {
uname := this.GetString("uname")
//设置
this.SetSession("username", uname)
//读取
username := this.GetSession("username")
//删除
this.DelSession("username")
this.TplName = "login.html"
}