Gonglin Zheng
Results
1
issues of
Gonglin Zheng
controller: type StaticController struct { beego.Controller } func (c _StaticController) Get() { path := strings.Trim(c.Ctx.Request.URL.Path, "/") file := fmt.Sprintf("%s/%s", staticPageRoot, path) http.ServeFile(c.Ctx.ResponseWriter, c.Ctx.Request, file) (_c.Ctx.ResponseWriter).Started = true } filter: func...