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

我希望使用string.toupper在golang模板中大写一个字符串,如:
{{ .Name | strings.toupper  }}

但这不起作用,因为字符串不是我数据的属性.

我无法导入字符串包,因为它警告我它没有被使用.

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

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

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1 Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...