```go
func httpIndex(w http.ResponseWriter, r *http.Request) {
fmt.Println(r.URL.Path)
t, _ := template.New("main.html").Funcs(template.FuncMap{
"funck": kuai,
}).ParseFiles("main.html", "t.html")
t.Execute(w, map[string]interface{}{
"qq": "aBc",
"cc": "456",
})
}```
上面的方法直接展示了编译后的页面,怎么样获取编译后的内容而不是直接展示?
有疑问加站长微信联系(非本文作者)