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

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

杜松子酒模板覆蓋部分模板

杜松子酒模板覆蓋部分模板

Go
慕工程0101907 2022-08-15 19:43:44
我正在使用杜松子酒和它的功能。一個(gè),如果它們是html模板渲染。因此,本著DRY的精神,我想創(chuàng)建一個(gè)包含所有常見html標(biāo)簽等的模板,并為不同的頁面主體提供一個(gè)插槽。base.html從本質(zhì)上講,這是base.html{{define "base"}}<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1"></head><body>{{ template "main" . }}</body></html>{{end}}然后我創(chuàng)建了一個(gè)名為”home.html{{template "base" .}}{{define "main"}}    <div class="container mt-5">        Hello    </div>{{end}}我在這個(gè)頁面上遵循了這個(gè)精彩的指南,它就像一個(gè)魅力。問題但是當(dāng)我嘗試添加另一個(gè)具有不同正文的頁面時(shí),例如:subpage.html{{template "base" .}}{{define "main"}}<div class="container">    <div>        <h2>This page is still in progress</h2>    </div></div>{{end}}然后,由 gins 或 選擇的最后一個(gè)模板將顯示在每個(gè)頁面上。在這種情況下,這是內(nèi)容。我該如何解決這個(gè)問題。默認(rèn)情況下是否有可能實(shí)現(xiàn)此行為?LoadHTMLFilesLoadHTMLGlobsubpage.html
查看完整描述

1 回答

?
慕仙森

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

你可以做這樣的事情:


base.html


{{ define "top" }}

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1">

</head>

<body>

{{ end }}


{{ define "bottom" }}

</body>

</html>

{{ end }}

home.html


{{ template "top" . }}


<div class="container mt-5">

    Hello

</div>


{{ template "bottom" . }}

subpage.html


{{ template "top" . }}


<div class="container">

    <div>

        <h2>This page is still in progress</h2>

    </div>

</div>


{{ template "bottom" . }}

然后,確保您使用的是文件的基本名稱:


// in the home handler use the following

c.HTML(http.StatusOK, "home.html", data)


// in the subpage handler use the following

c.HTML(http.StatusOK, "subpage.html", data)


查看完整回答
反對 回復(fù) 2022-08-15
  • 1 回答
  • 0 關(guān)注
  • 98 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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