gpt4 book ai didi

go - 如何在 golang 中使用不同的接口(interface)在单个网页中执行多个模板?

转载 作者:数据小太阳 更新时间:2023-10-29 03:14:22 27 4
gpt4 key购买 nike

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

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

在模板标题中,我有一个类别下拉菜单,并且在我的 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"}}

显然,同时使用这两个执行模板语句会得到两个不同的 header 。

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

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

最佳答案

我决定编辑我的标题模板以包含它上面的所有内容,并相应地更改我的 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}}

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

关于go - 如何在 golang 中使用不同的接口(interface)在单个网页中执行多个模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41303601/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com