如何将基本模板文件用于golang htmltemplate?

如何将基本模板文件用于golang htmltemplate?,第1张

如何将基本模板文件用于golang html / template?

只要解析模板以及“内容”,就可以使用base.html,如下所示:

base.html

{{define "base"}}<!DOCTYPE html><html lang="en"><body>header...{{template "content" .}}footer...</body></html>{{end}}

page1.html

{{define "content"}}I'm page 1{{end}}

page2.html

{{define "content"}}I'm page 2{{end}}

然后 ParseFiles 用( “你-page.html中”, “base.html文件”),并 ExecuteTemplate
与您的上下文。

tmpl, err := template.New("").ParseFiles("page1.html", "base.html")// check your errerr = tmpl.ExecuteTemplate(w, "base", yourContext)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5639085.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存