码农笔录博客源码
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

17 righe
426 B

6 anni fa
package controllers
import beego "github.com/beego/beego/v2/server/web"
6 anni fa
type MapController struct {
beego.Controller
}
func (this *MapController) Get() {
6 anni fa
this.Data["UserId"] = this.GetSession("userid")
this.Data["HeadImg"] = this.GetSession("headimg")
this.Data["NickName"] = this.GetSession("nickname")
this.Data["IsLogin"] = this.GetSession("nickname") != nil
6 anni fa
this.Data["IsMap"] = true
this.TplName = "map.html"
}