我需要帮助。我需要在子文件(,我的文本中的示例)中使用"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}}
慕勒3428872
相关分类