1
升级到1.11.6和1.11.7后 模版变量,内置函数,自定义函数等无法解析
复现方式: 升级到1.11.6或者1.11.7
func main() {
//g.Server().Run()
s := g.Server()
s.BindHandler("/aaa", func(r *ghttp.Request){
r.Cookie.Set("theme", "default")
r.Session.Set("name", "john")
content :=`Config:{{.Config.redis.cache}}, Cookie:{{.Cookie.theme}}, Session:{{.Session.name}}, Query:{{.Query.name}}`
r.Response.WriteTplContent(content, nil)
})
s.SetPort(8199)
s.Run()
}
会原样输出, 降级到1.11.5解决