在使用带有 Revel 的 html/template 包进行迭代时,我尝试打印切片的当前索引,但没有得到预期的结果。
我的行动:
func (c App) Index() revel.Result {
test_slice := []string{"t", "e", "s", "t"}
return c.Render(test_slice)
}
我的模板:
{{range $i, $test_slice := .}}
{{$i}}
{{end}}
而不是得到0 1 2 3,
我得到 DevMode RunMode currentLocale errors flash test_slice session title
我做错了什么 ?
相关分类