我需要在if-statement
range
中的golang
内嵌套"html/template"
。
Bookmarks.html
{{define "bookmarks"}}
<div class="bookmarks">
{{range .}}
<div class="bookmark">
<div class="image">
<a target="_blank" rel="noopener noreferrer" href="{{.Url}}">
{if .Img }}
<img src="/bookmark/get/image?name={{ .Img }}"/>
{{else}}
<img src="../static/images/placeholder.jpg"/>
{{end}}
</a>
</div>
{{end}}
</div>
{{end}}
go run
结尾于:
恐慌:模板:bookmarks.html:26:意外的{{end}}