这是我的代码:
func page_not_found(rw http.ResponseWriter, r *http.Request){
t,_:= template.ParseFiles(beego.BConfig.WebConfig.ViewsPath +"/404.html")
data :=make(map[string]interface{})
data["content"] = "page not found"
t.Execute(rw, data)
}
func main() {
beego.ErrorHandler("404",page_not_found)
beego.Router("/", &controllers.MainController{})
beego.Run()
}
我明白了:
答案 0 :(得分:0)
通过使用utf-8 bout
编码文件解决了这个问题