使用html/template格式化一段字符串时,举例如下:
var tpl =`Hello {{.}}!`
tmpl := template.New("")
tmpl.Parse(tpl)
tmpl.Execute(os.Stdout,"Go")
我想问怎么获得套用模板后的字符串,如"Hello Go!"。
var tpl =`Hello {{.}}!`
tmpl := template.New("")
tmpl.Parse(tpl)
var doc bytes.Buffer
tmpl.Execute(&doc,"Go")
fmt.Println(doc.String())
可以使用buffer
#4
更多评论