我希望使用string.ToUpper
在golang模板中大写一个字符串,如:
{{ .Name | strings.ToUpper }}
但这不起作用,因为strings
不是我数据的属性。
我无法导入strings
包,因为警告我没有使用它。
答案 0 :(得分:36)
只需使用这样的FuncMap(playground)将ToUpper功能注入模板。
import (
"bytes"
"fmt"
"strings"
"text/template"
)
type TemplateData struct {
Name string
}
func main() {
funcMap := template.FuncMap{
"ToUpper": strings.ToUpper,
}
tmpl, _ := template.New("myTemplate").Funcs(funcMap).Parse(string("{{ .Name | ToUpper }}"))
templateDate := TemplateData{"Hello"}
var result bytes.Buffer
tmpl.Execute(&result, templateDate)
fmt.Println(result.String())
}