<!-- lang: cpp --> //读取模板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)
原文链接:https://www.f2er.com/go/190788.html