如何将结构片段传递给模板并在Golang中进行迭代?

时间:2018-08-17 20:35:37

标签: templates go struct slice go-templates

我要传递包含结构切片,并在视图中显示所有值。

type Person struct {
    ID   int
    NAME string
}

切片结构的示例

 [{1 John},{2, Mary},{3, Steven},{4, Mike}]

我想要的 index.html

1 - John
2 - Mary
3 - Steven
4 - Mike

1 个答案:

答案 0 :(得分:0)

我找到了一条相关的帖子,并解决了。 谢谢你们。

Go templates : range over slice of structs instead of struct of slices

因此,如mkopriva所述,请使用范围操作。