package controllers import ( "github.com/astaxie/beego" ) type AdminController struct { beego.Controller } func (this *AdminController) ShowAPIVersion() { jsoninfo := this.GetString("id") if jsoninfo == "" { this.Ctx.WriteString("jsoninfo is empty") return } this.Ctx.Output.Body([]byte("weather world")) }