码农笔录博客源码
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.

15 satır
308 B

6 yıl önce
package controllers
import "github.com/astaxie/beego"
type MapController struct {
beego.Controller
}
func (this *MapController) Get() {
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"
}