第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

模板不渲染任何內(nèi)容,也沒(méi)有錯(cuò)誤,但狀態(tài)為 200

模板不渲染任何內(nèi)容,也沒(méi)有錯(cuò)誤,但狀態(tài)為 200

Go
米琪卡哇伊 2023-08-07 19:09:41
我正在一個(gè)簡(jiǎn)單的 HTTP 服務(wù)器中使用 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 和空正文。我使用了這個(gè)例子:https ://stackoverflow.com/a/36643663/2110953但我將來(lái)還需要添加模板函數(shù): var tpl = template.Must(template.New("").Funcs(template.FuncMap{"isRegistered": isRegistered}).ParseGlob("templates/*"))
查看完整描述

2 回答

?
眼眸繁星

TA貢獻(xiàn)1873條經(jīng)驗(yàn) 獲得超9個(gè)贊

你的contact.html不“渲染”任何東西。它僅定義body模板,但不包含它(執(zhí)行它)。

要執(zhí)行模板(模板內(nèi)),您可以使用該{{template}}操作。要定義執(zhí)行模板,您可以使用該{{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.

如果您的目標(biāo)是在所有頁(yè)面中擁有“固定”頁(yè)眉和頁(yè)腳,那么您必須重新構(gòu)建模板。在某處定義了headerfooter模板,并且頁(yè)面應(yīng)將它們作為第一個(gè)和最后一個(gè)元素包含在內(nèi)。


查看完整回答
反對(duì) 回復(fù) 2023-08-07
?
千巷貓影

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊

更新:所以我不得不創(chuàng)建一個(gè)頁(yè)眉和頁(yè)腳模板:


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

效果很好


查看完整回答
反對(duì) 回復(fù) 2023-08-07
  • 2 回答
  • 0 關(guān)注
  • 208 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)