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中文網其他相關文章!