有什么方法可以将变量(字符串、整数、布尔)传递给模板。例如(类似的东西):import ( "html/template")func main() { .... tmpl := template.Must(template.ParseFiles("templates/index.html")) mux.HandleFunc("/", func(rw http.ResponseWriter, req *http.Request) { varmap := map[string]interface{}{ "var1": "value", "var2": 100, } tmpl.ExecuteTemplate(rw, "index", varmap) }) // content of index.html {{define "index"}} {{var1}} is equal to {{var2}} {{end}}}
3 回答
- 3 回答
- 0 关注
- 159 浏览
添加回答
举报
0/150
提交
取消