次のコードを使用して、テンプレート ファイルをメモリに読み込みました。
t := template.New("master")
tpl, err := t.ParseFiles("templates/index.html")
今、私はそのテンプレートを文字列に描画したいので、私のindex.html
はかなり空です:
{{define "master"}}
Hello World
{{end}}
始めたばかりなので、まだデータがありません。Template
オブジェクトをデータなしで文字列に変換する方法はありますか?