我的路由器/ default.go,我试图使用原始的Go解决方案,但是失败了,这段代码无法编译。我不知道如何用faviconHandler替换路由器:
func faviconHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/img/favicon.ico")
}
func init() {
beego.Router("/", &controllers.MainController{})
beego.Router("/favicon.ico", faviconHandler) // this doesn't work
}
答案 0 :(得分:1)
我发现至少有一种方法:嵌入到index.tpl。
bee new newapp
cd $GOPATH/src/newapp
bee run # you will see the favicon of a bee.
将$ GOPATH / src / view / index.tpl中的嵌入文本修改为你的,这是一个linux脚本
cd views
# assume you have put the favicon.ico in this directory
base64 -w0 favicon.ico > favicon.b64
cp index.tpl index.tpl.old
sed 's/base64,.*"/base64,\n"/' index.tpl.old | sed '7r favicon.b64' > index.tpl
# rm favicon.ico favicon.b64 index.tpl.old # remove the temp file
答案 1 :(得分:0)
将您的favicon.ico文件放在./static/目录