首页 > 代码库 > GO模板的使用

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模板的使用