Go에서는 HTML 또는 기타 텍스트 형식을 동적으로 생성할 수 있는 템플릿을 정의하고 실행할 수 있습니다. 템플릿의 출력을 캡처하여 변수에 할당하고 싶을 수도 있습니다.
이는 Go에 내장된 템플릿 언어를 사용하여 직접 가능하지 않습니다. 다음 예와 같이 그렇게 하면 "피연산자에 예기치 않은 <템플릿>" 오류가 발생합니다.
{{$var := template "my-template"}}
이 제한을 우회하려면 등록할 수 있습니다. 템플릿 출력을 검색하는 사용자 정의 함수입니다. 방법은 다음과 같습니다.
var t *template.Template // execTempl retrieves the output of a named template. func execTempl(name string) (string, error) { buf := &bytes.Buffer{} // Create a buffer to store the template output. err := t.ExecuteTemplate(buf, name, nil) // Execute the template into the buffer. return buf.String(), err }
t = template.Must(template.New("").Funcs(template.FuncMap{ "execTempl": execTempl, }).Parse(tmpl))
if err := t.Execute(os.Stdout, nil); err != nil { panic(err) }
템플릿에서 등록된 "execTempl" 함수를 사용하여 명명된 템플릿의 출력을 검색하고 이를 변수에 할당할 수 있습니다:
const tmpl = `{{define "my-template"}}my-template content{{end}} See result: {{$var := execTempl "my-template"}} {{$var}} `
다음은 이 사용법을 보여주는 완전한 예입니다. 기술:
package main import ( "bytes" "fmt" "os" "text/template" ) const tmpl = `{{define "my-template"}}my-template content{{end}} See result: {{$var := execTempl "my-template"}} {{$var}} ` func main() { execTempl := func(name string) (string, error) { buf := &bytes.Buffer{} err := t.ExecuteTemplate(buf, name, nil) return buf.String(), err } t := template.Must(template.New("").Funcs(template.FuncMap{ "execTempl": execTempl, }).Parse(tmpl)) if err := t.Execute(os.Stdout, nil); err != nil { fmt.Println(err) } }
위 프로그램을 실행하면 다음과 같은 출력이 생성됩니다.
See result: my-template content
이 기술을 사용하면 임의 템플릿의 출력을 캡처하고 나중에 사용할 수 있도록 변수에 저장할 수 있습니다. 처리 또는 프리젠테이션.
위 내용은 Golang 템플릿 출력을 변수에 할당하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!