golang 使用template funcmap的规则

http://stackoverflow.com/questions/10199219/go-template-function

http://stackoverflow.com/questions/15209236/multiple-templates-with-funcmap

https://groups.google.com/forum/#!topic/golang-nuts/0Q-r_EkCPgk

总之解决方法就是,以首个文件的basename作为模板的名字就可以解决了。

例子

func TestFuncMap(T *testing.T){
    //os.Chdir("controller")
    t:=template.New("render_test.html")
    t.Funcs(funcMap)
    t,err:=t.ParseFiles("render_test.html")
    if err!=nil{
        panic(err)
    }
    render:=make(map[string]interface{})
    render["homeworkid"]=bson.NewObjectId()
    render["name"]="title man"
    if err =t.Execute(os.Stdout,render);err!=nil{
        panic(err)
    }
}

render_test.html

{{.name}}
{{.homeworkid}}
{{hex .homeworkid}}

 

本文来自:博客园

感谢作者:ggaaooppeennngg

查看原文:golang 使用template funcmap的规则

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。