在模板中使用if语句确实令我感到困惑。
我试图将class = "active"
放入使用golang模板制作的导航列表中,以执行检测活动标签的基本标签菜单。
这是我的尝试:
{{define "header"}}
<!DOCTYPE html>
<html>
<head>
<title>Geoprod</title>
{{template "stylesheet" .}}
</head>
<body>
<nav class="navbar" role="navigation">
<div class="navbar-header">
<a{{if eq .Active "accueil"}} class="active"{{end}} href="/">Geoprod</a>
</div>
<div class="navbar-body">
<ul class="navbar-list">
<li{{if eq .Active "societe"}} class="active"{{end}}><a href="/societe">Société</a></li>
<li{{if eq .Active "dossier"}} class="active"{{end}}><a href="/dossier">Dossier</a></li>
<li{{if eq .Active "temps"}} class="active"{{end}}><a href="/temps">Temps</a></li>
<li{{if eq .Active "mails"}} class="active"{{end}}><a href="/mails">Mails</a></li>
</ul>
</div>
</nav>
{{end}}
在main.go中:
var FuncMap = template.FuncMap{
"eq": func(a, b interface{}) bool {
return a == b
},
}
var templates = template.Must(template.ParseGlob("templates/*.html"))
并在func main()
中templates.Funcs(FuncMap)
程序编译,但是我发现添加{{if eq .Active "something"}} class="active"{{end}}
(我在这里包含的^^)导致程序不再显示任何文本。知道为什么吗?
答案 0 :(得分:4)
我尝试将您的代码转换为最小的工作示例,我相信您的代码和模板可以按预期工作。您可以在Go Playground上看到我的代码(并运行它)。
我猜错了什么:您是否注意到{{define ...}}
仅定义了一个模板供将来使用。您仍然需要告诉Go实际使用此模板,方法是在主模板中使用{{ template "header" }}
或类似模板,或使用templates.ExecuteTemplate
。