猿问

带有变量的 Golang/Revel 模板引擎模板

有没有办法将迭代的变量传递到 Golang/Revel 模板中?


例如,在“header.html”中,我有


{{range .templates}}

    {{template "something" .}}

{{end}}

如何使用数组中的当前索引作为模板的参数?我尝试嵌入另一个 {{.}},如 Revel 示例中所示,但这会导致模板编译错误。变量会像 $i 一样吗?


例如,在 Revel 中迭代是这样完成的


{{range .messages}}

    <p>{{.}}</p>

{{end}}

但是,我读到 . 意味着 nil .... 这在 Revel 中是如何工作的?


侃侃无极
浏览 167回答 1
1回答

开满天机

如果我正确理解了您的问题,您可以使用range内置来获取索引,然后将其传递给模板,如下所示:{{range $i, $t := .templates}}&nbsp; &nbsp;{{template "Template.html" $i}}{{end}}所以如果templates变量是这样定义的:templates := []string{"One", "Two"}并Template.html包含:This is from Template.html: {{ . }}<br>那么最终的输出将是:This is from Template.html: 0<br>This is from Template.html: 1<br>
随时随地看视频慕课网APP

相关分类

Go
我要回答