go 模版里的循环,在循环里引用外部变量时要在前面加个美元符$
,如下
1
2
3
4
5
6
<label for="state">类型</label>
<select id="state" class="pure-input-1-2" name="type">
{{range $_, $v := .Types}}
<option value="{{$v}}" {{if eq $v $.CurrentType}}selected="selected"{{end}}>{{$v}}</option>
{{end}}
</select>
本文网址: https://golangnote.com/topic/93.html 转摘请注明来源