Golang 模板:将函数传递给模板
问题:
当尝试传递函数到模板时,出现以下错误遇到:
Error: template: struct.tpl:3: function "makeGoName" not defined
解决方案:
要解决此错误,必须在解析模板之前注册自定义函数。模板是为静态分析而设计的,要求解析器能够区分有效的函数名称和其他标识符。
不要使用 template.ParseFiles(),而是使用 Template.ParseFiles() 方法,该方法在调用 template.New()。此方法在解析模板之前注册函数。
改进的代码:
t, err := template.New("struct.tpl").Funcs(template.FuncMap{ "makeGoName": makeGoName, "makeDBName": makeDBName, }).ParseFiles("templates/struct.tpl")
此外,Template.Execute() 方法会返回错误。要观察输出生成的任何潜在问题,请处理此错误:
if err := t.Execute(os.Stdout, data); err != nil { fmt.Println(err) }
以上是如何将函数传递给 Go 模板?的详细内容。更多信息请关注PHP中文网其他相关文章!