GO模板的使用

//方法一
t, err := template.New("").Funcs(template.FuncMap{"Test": tools.Test}).ParseFiles("views/index.html")
checkError(err)
data := map[string]string{"key1": "value1", "key2": "value2"}
t.ExecuteTemplate(w, "index.html", data)

//方法二
t := template.New("name")
t = t.Funcs(template.FuncMap{"Test": tools.Test})
bytes, err := ioutil.ReadFile("views/index.html")
t, err = t.Parse(string(bytes))
fmt.Println(err)
data := map[string]string{"key1": "value1", "key2": "value2"}
t.Execute(w, data)



本文来自:开源中国博客

感谢作者:别人说我名字很长

查看原文:GO模板的使用

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。