是的,这是可能的。 html.Template 实际上是一组模板文件。如果您执行此集中定义的块,则它可以访问此集中定义的所有其他块。
如果您自己创建此类模板集的地图,您将拥有与 Jinja / Django 提供的基本相同的灵活性。唯一的区别是html/template包不能直接访问文件系统,所以你必须自己解析和组合模板。
考虑以下示例,其中包含两个都继承自“base.html”的不同页面(“index.html”和“other.html”):
// Content of base.html:
{{define "base"}}<html>
<head>{{template "head" .}}</head>
<body>{{template "body" .}}</body>
</html>{{end}}
// Content of index.html:
{{define "head"}}<title>index</title>{{end}}
{{define "body"}}index{{end}}
// Content of other.html:
{{define "head"}}<title>other</title>{{end}}
{{define "body"}}other{{end}}
以及下面的模板集图:
tmpl := make(map[string]*template.Template)
tmpl["index.html"] = template.Must(template.ParseFiles("index.html", "base.html"))
tmpl["other.html"] = template.Must(template.ParseFiles("other.html", "base.html"))
您现在可以通过调用来呈现您的“index.html”页面
tmpl["index.html"].Execute("base", data)
你可以通过调用来呈现你的“other.html”页面
tmpl["other.html"].Execute("base", data)
通过一些技巧(例如,模板文件的命名约定一致),甚至可以自动生成 tmpl 映射。