html模板的应用实例,Go html/template 模板的使用实例详解
从字符串载入模板我们可以定义模板字符串,然后载入并解析渲染:template.New(tplName string).Parse(tpl string)// 从字符串模板构建tplStr := `{{ .Name }} {{ .Age }}`// if parse failed Must will render a panic errortpl := template.Must(template....