我想在模板中的go块中使用js变量。 这是我设置变量的地方:
{{ range $tourneyNo, $tourney := . }}
<ul><strong>Numéro du tournoi : {{ $tourneyNo }}</strong>:</ul>
<script type="text/javascript">
var $selectedTourney = {{ $tourneyNo }}; // set $selectedTourney = the last $tourneyNo --let's say it is 209
</script>
{{ end }}
以下是我想用它的方法:
{{ with index . $selectedTourney}} // $selectedTourney should be replaced in the code by 209, as set before
{{.Name }}
{{ end }}
代码的第二部分不起作用;我想从中获取元素。具有先前在$ selectedTourney变量中定义的索引。
目标是显示一个锦标赛列表,用户点击其中一个锦标赛,并使用js在同一页面上显示有关此锦标赛的信息。
非常感谢你的帮助:D