我正在尝试将值放入“标题”模板中,例如标题和导航链接,但无法访问我从包含的模板发送到主模板的变量。
渲染模板:
...
templateName := "index"
args := map[string]string{
"Title": "Main Page",
"Body": "This is the content",
}
PageTemplates.ExecuteTemplate(w, templateName+".html", args)
...
index.html 模板:
{{template "header"}} <-- Including the "header.html" template
{{.Body}} <-- Variable that works
{{template "footer"}} <-- Does not matter!
header.html 模板:
{{define "header"}}
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{.Title}}</title> <-- Variable empty :(
</head>
<body>
{{end}}
显然,它不会那样工作。
也许有一种方法可以解析/获取模板并将变量放入其中,而无需将整个头文件放入代码中?然后我可以将该模板作为变量发送到我的主模板。但这似乎不是最好的方法。