Go 中解析模板之前需要先注册自定义函数。当尝试访问未注册的函数时,您可能会遇到如下错误:
Error: template: struct.tpl:3: function "makeGoName" not defined
要解决此问题,请使用 template.New() 创建一个新的未定义模板。 template.New() 返回的 template.Template 类型有一个 Template.ParseFiles() 方法,应该使用该方法来代替 template.ParseFiles()。
这是一个示例:
t, err := template.New("struct.tpl").Funcs(template.FuncMap{ "makeGoName": makeGoName, "makeDBName": makeDBName, }).ParseFiles("templates/struct.tpl")
使用 template.ParseFiles() 时,必须指定正在执行的文件的基本名称template.New().
请记住,Template.Execute() 也会返回错误。如果没有生成输出,则打印错误:
if err := t.Execute(os.Stdout, data); err != nil { fmt.Println(err) }
以上是如何解决解析带有自定义函数的 Go 模板时出现'function not Define”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!