3

我正在尝试将值放入“标题”模板中,例如标题和导航链接,但无法访问我从包含的模板发送到主模板的变量。

渲染模板:

    ...
    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}}

显然,它不会那样工作。

也许有一种方法可以解析/获取模板并将变量放入其中,而无需将整个头文件放入代码中?然后我可以将该模板作为变量发送到我的主模板。但这似乎不是最好的方法。

4

1 回答 1

4

您可以在调用模板时将上下文传递给模板。在您的示例中,更改{{template "header"}}{{template "header" .}}就足够了。

官方文档中的相关部分:

{{template "name"}}
指定名称的模板以 nil 数据执行。

{{template "name" pipeline}}
指定名称的模板执行时将点设置为管道的值。

PS:这与问题无关,但您还应该删除 and 之间的换行符 {{define "header"}}<!DOCTYPE html>以便 doctype 真正成为模板中的第一件事。

于 2013-08-08T14:36:44.157 回答