是的,有可能。Ahtml.Template
实际上是一组模板文件。如果您执行此集中定义的块,则它可以访问此集中定义的所有其他块。
如果您自己创建此类模板集的地图,您将拥有与 Jinja / Django 提供的基本相同的灵活性。唯一的区别是html/template包不能直接访问文件系统,所以你必须自己解析和组合模板。
考虑以下示例,其中两个不同的页面(“index.html”和“other.html”)都继承自“base.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
自动生成地图。