为了账号安全,请及时绑定邮箱和手机立即绑定

tmpl.Execute 和子文件 golang

tmpl.Execute 和子文件 golang

Go
喵喵时光机 2021-09-20 10:49:32
我需要帮助。我需要在子文件(,我的文本中的示例)中使用"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}}
查看完整描述

1 回答

?
慕勒3428872

TA贡献1848条经验 获得超6个赞

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


查看完整回答
反对 回复 2021-09-20
  • 1 回答
  • 0 关注
  • 280 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信