码迷,mamicode.com
首页 > 其他好文 > 详细

GO模板的使用

时间:2014-10-18 09:52:01      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:io   ar   使用   html   ad   ef   new   htm   as   

//方法一
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模板的使用

标签:io   ar   使用   html   ad   ef   new   htm   as   

原文地址:http://my.oschina.net/tongjh/blog/334841

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!