0

请原谅我提出一个看起来很奇怪的问题。我不确定如何在一个声明中准确地陈述我的问题。

我的网页中有三个模板,页眉、布局和页脚。

在模板标题中,我有一个类别下拉菜单,并且我的 go 代码中有一段带有子菜单项的字符串。

Categories := []string{"Holiday","IQ","Future"}

并且模板头有以下html代码

<div class="ui dropdown item">
  <i class="browser icon"></i>
  Categories
  <i class="dropdown icon"></i>
  <div class="menu">              
    {{range $i,$e:= .}}
    <a class="item"><i class="hashtag icon"></i>{{$e}}</a>
    {{end}}
  </div>
</div>

所以当我做一个,

t,err :=template.ParseFiles("template/header.html","template/index.html","template/footer.html")
t.ExecuteTemplate(w,"header",Categories)

它给了我一个漂亮的标题,但我需要做

t.ExecuteTemplate(w,"layout",Featured)

为主页。布局模板具有以下结构

some html code
{{template "header"}}
more html code
{{template "footer"}}

显然,一起使用两个执行模板语句会给我两个不同的标题。

如果我从模板布局中删除模板标题,视觉输出是完美的,但是当您查看 html 代码时,菜单栏位于“link rel”语句上方(请记住,我在 {{template 上方有“一些 html 代码” header"}} 在布局模板中),这显然不好。

我应该怎么做才能使用它们各自的结构同时执行两个模板?

4

1 回答 1

1

我决定编辑我的标题模板以包含上面的所有内容,并相应地更改了我的 go 代码。我实际上在它上面有一些 CSS 和脚本引用。由于每个页面都会有所不同,因此我只在标题中包含了 nav_bar 但我想办法解决这个问题。

我做了一个新结构

type Header struct{
    Css []string;
    Title string;
    Js []string;
    Categories []string;
}

这是我的标题模板的一部分

{{range $i,$e:=.Css}}
<link rel="stylesheet" type="text/css" href="{{$e}}">
{{end}}
{{range $i,$e:=.Js}}
<script src="{{$e}}"></script>
{{end}}

我首先使用相应的标题接口执行带有标题的模板部分,然后使用相应的接口执行另一个执行模板。我还必须从 index.html 中删除 {{template "header"}} 部分。结果现在看起来很完美,并且正在按照我想要的方式工作。

于 2016-12-23T18:06:34.280 回答