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

模板不呈现任何内容,也没有错误,但状态为 200

模板不呈现任何内容,也没有错误,但状态为 200

Go
手掌心 2022-04-20 20:54:13
我在一个简单的 HTTP 服务器上玩 Go:// var tpl = template.Must(template.New("").Funcs(template.FuncMap{"isRegistered": isRegistered}).ParseGlob("templates/*")) // functions will be added latervar tpl = template.Must(template.ParseGlob("templates/*"))func contact(w http.ResponseWriter, r *http.Request) {    //// defined templates are: "home.html", "layout", "layout.html", "contact.html", "body"    log.Println("in handler: ", tpl.DefinedTemplates())    err := tpl.ExecuteTemplate(w, "contact.html", nil)    if err != nil {        fmt.Println(err) // no error displayed    }    // fmt.Fprintf((w), "write") - This works fine}func main() {    log.Println("Serving on 8888 port")    http.HandleFunc("/contact", contact)    http.ListenAndServe(":8888", nil)}{{define "layout"}}<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>{{.Title}}</title>    <meta name="description" content="{{.Description}}">    <link rel="canonical" href="{{.Canonical}}" /></head><body>{{template "body" .}}</body></html>{{end}}{{define "body"}}<h1>Contact us page</h1><p>    Your name is...</p>{{end}}localhost:8888/contact返回OK 200 和空正文。我用了这个例子:https ://stackoverflow.com/a/36643663/2110953但是我将来还需要添加模板函数: var tpl = template.Must(template.New("").Funcs(template.FuncMap{"isRegistered": isRegistered}).ParseGlob("templates/*"))
查看完整描述

2 回答

?
森栏

TA贡献1810条经验 获得超5个赞

你contact.html不会“渲染”任何东西。它只是定义body模板,但不包括它(执行它)。


要执行模板(在模板内),您可以使用{{template}}操作。要定义和执行模板,您可以使用{{block}}操作。


模板操作:


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


{{block "name" pipeline}} T1 {{end}}

    A block is shorthand for defining a template

        {{define "name"}} T1 {{end}}

    and then executing it in place

        {{template "name" pipeline}}

    The typical use is to define a set of root templates that are

    then customized by redefining the block templates within.

如果您的目标是在所有页面中都有一个“固定”的页眉和页脚,那么您必须重新构建您的模板。在某处定义了一个header和模板,页面应该将它们作为第一个和最后一个元素包含在内。footer请参阅如何使用结构或变量值的字段作为模板名称?


查看完整回答
反对 回复 2022-04-20
?
尚方宝剑之说

TA贡献1788条经验 获得超4个赞

更新:所以我只需要创建一个页眉和页脚模板:


{{template "header" .}}


<h1>Contact us page</h1>


<p>

    Your name is...

</p>



{{template "footer" .}}

{{define "header"}}

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>{{.Title}}</title>

    <meta name="description" content="{{.Description}}">

    <link rel="canonical" href="{{.Canonical}}" />

</head>

<body>

{{end}}

{{define "footer"}}

</body>

</html>

{{end}}

它工作得很好


查看完整回答
反对 回复 2022-04-20
  • 2 回答
  • 0 关注
  • 140 浏览
慕课专栏
更多

添加回答

举报

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