标签:io java ar log html c ad new htm
//读取模板template/index.html的内容
b, err := ioutil.ReadFile(“template/index.html”)
if err != nil {
log.Println(err)
}
s := string(b)
t, _ := template.New(““).Funcs(template.FuncMap{“ShowS”:strings.Title}).Parse(s)
标签:io java ar log html c ad new htm
原文地址:http://my.oschina.net/beloser/blog/311897