package controllers import ( "github.com/astaxie/beego" ) type WeimobController struct { beego.Controller } func (c *WeimobController) onCallbackMsg(msgType string) { c.Data["json"] = "ok" c.ServeJSON() } func (c *WeimobController) Code() { c.onCallbackMsg("code") }