码农笔录博客源码
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
426 B

6 yıl önce
package controllers
3 yıl önce
import beego "github.com/beego/beego/v2/server/web"
6 yıl önce
type MapController struct {
beego.Controller
}
func (this *MapController) Get() {
6 yıl önce
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 yıl önce
this.Data["IsMap"] = true
this.TplName = "map.html"
}