是否可以在golang中呈现多个具有相同名称的html模板。原因是,我想制作一个布局并将其重用于多个视图。例如:
{{define "MainLayout"}}
<html>
<head>
<title>{{.Title}}</title>
</head>
<body>
<div>{{template "Content" .}}</div>
</body>
</html>
{{end}}
内容可以是不同的模板,都由 {{define "Content"}} 定义
慕容3067478
尚方宝剑之说
相关分类