小编典典

tmpl.Execute和子文件golang

go

我需要帮助。我需要在子文件中使用"html/template"的标记({{.Title}},示例)("article.html"在我的文本中为示例):

// ...
type Page struct {
    Test string
}

type News struct {
    Page
    Title string
}

func main() {
    t, _ := template.ParseFiles(filepath+"core.tmpl", filepath+"article.tmpl")
    p := &News{
        Title: "TITLE",
        Page: Page{
            Test: "TITLE",
        },
    }
    t.Execute(wr, p)
}

代码在core.tmpl

{{template "article"}}

代码在article.tmpl

{{define "article"}}
{{.Title}}<br><br>
{{.Page.Test}}
{{end}}

阅读 385

收藏
2020-07-02

共1个答案

小编典典

在你core.tmpl你必须使用

{{template "article" .}}

如果未.在末尾指定,则模板将与nil数据一起执行。指定.会将的值传递.给调用的模板。

引用text/template软件包文档的以下Actions部分:

{{template "name"}}
    The template with the specified name is executed with nil data.

{{template "name" pipeline}}
    The template with the specified name is executed with dot set
    to the value of the pipeline.
2020-07-02