在Go中显示html模板的计数

在Go中使用html / templates可以执行以下操作:


<table class="table table-striped table-hover" id="todolist">

    {{$i:=1}}

    {{range .}}         

    <tr>

        <td><a href="id/{{.Id}}">{{$i}}</a></td>

        <td>{{.Title}}</td>

        <td>{{.Description}}</td>

        </tr>

        {{$i++}}


    {{end}}

</table>

每次我添加$ i变量,应用都会崩溃。




MM们
浏览 170回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go