1 回答

TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超11個(gè)贊
作為解決此問(wèn)題以更接近所需功能的解決方法,我實(shí)施了以下(不太理想)解決方案:
base_content_view.html
{{template "begin_content.html" . }}
? <!-- content here -->
{{template "end_content.html" . }}
begin_content.html
{{template "header.html" . }}
<div class="container">
? <div class="row">
? ? {{template "flash.html" .}}
? </div>
? ? <!-- Left column of Content -->
? <div class="col-md-9 col-sm-8 col-xs-12">? ??
end_content.html
? </div>
? <!-- //Left Column of Content -->
? <!-- Right column of summary -->
? <div class="col-md-3 col-sm-4 hidden-xs">
? ? <div class="container">
? ? ? {{template "sidebar.html" .}}
? ? </div>
? </div>
? <!-- //Right column of summary -->
{{template "footer.html" .}}
base_content_view.html 是一個(gè)靜態(tài)文件,在創(chuàng)建新視圖時(shí)將其復(fù)制粘貼為模板。此設(shè)計(jì)確實(shí)會(huì)引發(fā)其他問(wèn)題,但可作為功能限制的示例解決方法template。
- 1 回答
- 0 關(guān)注
- 128 瀏覽
添加回答
舉報(bào)