golang 模版 管道

前端之家收集整理的这篇文章主要介绍了golang 模版 管道前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<!-- 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

猜你在找的Go相关文章