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 템플릿을 구문 분석할 때 '함수 정의되지 않음' 오류를 해결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!