码农笔录博客源码
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

15 wiersze
308 B

6 lat temu
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 lat temu
this.Data["IsMap"] = true
this.TplName = "map.html"
}