Golang模板:使用管道大写字符串

时间:2014-01-09 21:05:14

标签: string templates go uppercase

我希望使用string.ToUpper在golang模板中大写一个字符串,如:

{{ .Name | strings.ToUpper  }}

但这不起作用,因为strings不是我数据的属性。

我无法导入strings包,因为警告我没有使用它。

这里的脚本: http://play.golang.org/p/7D69Q57WcN

1 个答案:

答案 0 :(得分:36)

只需使用这样的FuncMapplayground)将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())
}